/* ══════════════════════════════════════════════════════════════════
   SELLO SOLUTIONS — Public Website Styles
   Based on VeriFactu Hero Design
   ══════════════════════════════════════════════════════════════════ */

:root {
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --color-dark: #1a1a1a;
    --color-mid: #242424;
    --color-blue: #f97316;
    --color-blue-light: #fb923c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--color-dark);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

a { color: #fdba74; text-decoration: none; }
a:hover { color: #fed7aa; }

/* ── Navigation ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-nav .brand {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    display: flex;
    align-items: center;
}

.site-nav .brand-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    display: block;
    margin-top: 25px;
}

.site-nav .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin-left: auto;
    margin-right: 12px;
}

.site-nav .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    transition: color 0.15s;
}

.site-nav .nav-links a:hover { color: #fff; }

/* ── Burger Menu ── */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ccc;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Language Switcher ── */
.lang-switch {
    position: relative;
    margin-left: 4px;
}

.lang-current {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background 0.15s;
}

.lang-current:hover {
    background: rgba(255,255,255,0.1);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 200;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.lang-menu.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #b0b0b0;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font);
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.lang-option span {
    font-size: 18px;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: url('/assets/1.jpg') center / cover no-repeat fixed;
}

/* Dark overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
}

/* Grid overlay */
.hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}

/* Glow orbs */
.hero .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero .glow-orb-1 {
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(249, 115, 22, 0.15);
}

.hero .glow-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: rgba(251, 146, 60, 0.1);
}

.hero .glow-orb-3 {
    top: 33%;
    right: 33%;
    width: 256px;
    height: 256px;
    background: rgba(245, 158, 11, 0.1);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 70%;
    margin: 0 auto;
    padding: 160px 24px 128px;
}

@media (min-width: 1024px) {
    .hero-inner { padding: 160px 48px 128px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Hero Left Column ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35, 36, 36, 0.15);
    border: 1px solid rgba(26, 26, 26, 0.3);
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 32px;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span {
    color: #fed7aa;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .hero h1 { font-size: 38px; }
}

@media (min-width: 1024px) {
    .hero h1 { font-size: 43px; }
}

.hero h1 .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, #fb923c 0%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-dark {
    background: linear-gradient(135deg, #7c2d12 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(254, 215, 170, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 512px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background: #fb923c;
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fdba74;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(251, 146, 60, 0.5);
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: #fb923c;
    color: #fff;
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-signal svg {
    color: #fb923c;
    flex-shrink: 0;
}

.trust-signal span {
    color: #fdba74;
    font-size: 14px;
}

/* ── Hero Right Column — Visual Card ── */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
        justify-content: flex-end;
    }
}

.visual-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 448px;
}

.hero-float-img {
    position: absolute;
    bottom: -160px;
    right: -160px;
    width: 400px;
    height: auto;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
    transform: rotate(-8deg);
}

.visual-card {
    border-radius: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-header .card-icon-box {
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header .card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.card-header .card-subtitle {
    font-size: 12px;
    color: #fb923c;
}

.card-header .card-status {
    margin-left: auto;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Fake code snippet */
.code-snippet {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
}

.code-snippet .comment { color: #fb923c; }
.code-snippet .keyword { color: #fbbf24; }
.code-snippet .fn-name { color: #fb923c; }
.code-snippet .variable { color: #fdba74; }
.code-snippet .string { color: #fb923c; }
.code-snippet .punctuation { color: #94a3b8; }
.code-snippet .method { color: #fb923c; }
.code-snippet .await-kw { color: #fb923c; font-style: italic; }
.code-snippet .success { color: #4ade80; display: flex; align-items: center; gap: 4px; margin-top: 8px; }

/* Stats grid */
.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-item {
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.stat-item .stat-emoji {
    font-size: 16px;
    margin-bottom: 2px;
}

.stat-item .stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.stat-item .stat-label {
    font-size: 12px;
    color: #fb923c;
}

/* Floating badges */
.float-badge {
    position: absolute;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.float-badge-deadline {
    bottom: -16px;
    left: -32px;
    background: rgba(245, 158, 11, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: float-delayed 6s ease-in-out infinite;
    animation-delay: -3s;
}

.float-badge-deadline .badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #fcd34d;
}

.float-badge-deadline .badge-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.float-badge-penalty {
    top: -16px;
    right: -16px;
    background: rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.float-badge-penalty .badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #fdba74;
}

.float-badge-penalty .badge-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(251, 146, 60, 0.6);
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

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


/* ══════════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════════ */
.stats-bar {
    background: #0a1f1a;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
    padding: 40px 24px;
}

.stats-bar-inner {
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(5, 1fr); }
}

.stat-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.stat-val.text-red { color: #f87171; }
.stat-val.text-amber { color: #fbbf24; }
.stat-val.text-blue { color: #fb923c; }
.stat-val.text-green { color: #4ade80; }

.stat-lbl {
    color: rgba(253, 186, 116, 0.7);
    font-size: 12px;
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════════════════════════════ */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .section-container { padding: 96px 48px; }
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-header-center h2 { font-size: 40px; }
}

.section-subtitle {
    color: rgba(253, 186, 116, 0.7);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle-dark {
    color: #64748b;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Badges */
.badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.badge-blue {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: #fdba74;
}

.badge-blue svg { color: #fb923c; }

.badge-amber {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.badge-amber svg { color: #fbbf24; }

.badge-light-blue {
    background: #ffedd5;
    color: #c2410c;
}

.badge-light-blue svg { color: #ea580c; }

.badge-blue-outline {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
}

.badge-blue-outline svg { color: #ea580c; }

.rust-badge-mini {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: #ce4820;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}


/* ══════════════════════════════════════════════════════════════════
   PROS & CONS SECTION
   ══════════════════════════════════════════════════════════════════ */
.pros-cons-section {
    background: linear-gradient(180deg, #0a1f1a 0%, #0a1f1a 100%);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .pros-cons-grid { grid-template-columns: 1fr 1fr; }
}

.pros-cons-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pros-cons-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.cons-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.pros-cons-heading h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.pros-cons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-card,
.con-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: transform 0.3s;
}

.pro-card:hover,
.con-card:hover {
    transform: translateY(-2px);
}

.pro-card {
    background: rgba(34, 197, 94, 0.07);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.pro-card svg { flex-shrink: 0; margin-top: 2px; }

.con-card {
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.con-card svg { flex-shrink: 0; margin-top: 2px; }

.card-item-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.card-item-desc {
    font-size: 14px;
    color: rgba(254, 215, 170, 0.6);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner-blue {
    margin-top: 56px;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
}

@media (min-width: 768px) {
    .cta-banner-blue {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cta-banner-blue h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.cta-banner-blue p {
    color: rgba(253, 186, 116, 0.7);
    font-size: 14px;
}


/* ══════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════════ */
.services-section {
    background: #f8fafc;
}

.services-section h2 {
    color: #0a1f1a;
}

.services-new-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-new-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-new-grid { grid-template-columns: repeat(3, 1fr); }
}

.svc-card {
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.svc-blue {
    background: linear-gradient(135deg, #fff7ed, #fff);
    border: 1px solid #fed7aa;
}

.svc-blue:hover { border-color: #fdba74; }

.svc-green {
    background: linear-gradient(135deg, #fff7ed, #fff);
    border: 1px solid #fed7aa;
}

.svc-green:hover { border-color: #fdba74; }

.svc-amber {
    background: linear-gradient(135deg, #fffbeb, #fff);
    border: 1px solid #fde68a;
}

.svc-amber:hover { border-color: #fcd34d; }

.svc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon-blue { background: #ffedd5; color: #ea580c; }
.svc-icon-green { background: #ffedd5; color: #ea580c; }
.svc-icon-amber { background: #fef3c7; color: #d97706; }

.svc-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}

.svc-badge-blue { background: #ffedd5; color: #c2410c; }
.svc-badge-green { background: #ffedd5; color: #c2410c; }
.svc-badge-amber { background: #fef3c7; color: #92400e; }

.svc-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #0a1f1a;
    margin-bottom: 12px;
}

.svc-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.svc-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.svc-highlights span {
    font-size: 14px;
    color: #475569;
}

.svc-highlights {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 8px;
    align-items: center;
}

.svc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    justify-self: center;
}

.svc-dot-blue { background: #ffedd5; }
.svc-dot-green { background: #ffedd5; }
.svc-dot-amber { background: #fef3c7; }

.svc-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.svc-link:hover { gap: 10px; }

.svc-link-blue { color: #ea580c; }
.svc-link-green { color: #ea580c; }
.svc-link-amber { color: #d97706; }


/* ══════════════════════════════════════════════════════════════════
   TECHNOLOGY SECTION
   ══════════════════════════════════════════════════════════════════ */
.tech-section {
    background: linear-gradient(180deg, #0a1f1a 0%, #0a1f1a 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .tech-grid { grid-template-columns: 1fr 1fr; }
}

.tech-h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.tech-description {
    color: rgba(253, 186, 116, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tech-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-reason {
    display: flex;
    gap: 16px;
}

.tech-reason-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.tech-reason-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.tech-reason-desc {
    font-size: 14px;
    color: rgba(253, 186, 116, 0.6);
    line-height: 1.6;
}

/* Stack card */
.stack-card {
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fb923c;
    margin-bottom: 20px;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stack-item {
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.2s;
}

.stack-item:hover { transform: translateY(-2px); }

.stack-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.stack-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-display);
}

.stack-role {
    font-size: 12px;
    color: rgba(251, 146, 60, 0.6);
}

/* Benchmark card */
.benchmark-card {
    border-radius: 16px;
    padding: 20px;
    background: rgba(206, 72, 32, 0.1);
    border: 1px solid rgba(206, 72, 32, 0.2);
}

.benchmark-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rust-badge-lg {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ce4820;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}

.benchmark-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.benchmark-subtitle {
    font-size: 12px;
    color: rgba(251, 191, 36, 0.7);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.bench-metric {
    font-size: 12px;
    color: rgba(251, 191, 36, 0.6);
    margin-bottom: 8px;
}

.bench-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.bench-old {
    font-size: 12px;
    color: rgba(251, 191, 36, 0.4);
    text-decoration: line-through;
}


/* ══════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ══════════════════════════════════════════════════════════════════ */
.process-section {
    background: #f8fafc;
}

.process-section h2 {
    color: #0a1f1a;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.process-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.process-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #ffedd5;
    user-select: none;
}

.process-icon {
    width: 40px;
    height: 40px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    transition: background 0.3s;
}

.process-card:hover .process-icon { background: #ffedd5; }

.process-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #0a1f1a;
    margin-bottom: 4px;
}

.process-duration {
    font-size: 12px;
    font-weight: 600;
    color: #f97316;
    letter-spacing: 0.025em;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.process-cta {
    margin-top: 48px;
    text-align: center;
}

.process-cta p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
}


/* ══════════════════════════════════════════════════════════════════
   COMPLIANCE SECTION
   ══════════════════════════════════════════════════════════════════ */
.compliance-section {
    background: #fff;
}

.compliance-section h2 {
    color: #0a1f1a;
}

.compliance-subheading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 24px;
}

.compliance-requirements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 64px;
}

.req-row {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .req-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.req-row:hover {
    border-color: #fed7aa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.req-ref {
    font-size: 12px;
    font-weight: 700;
    background: #ffedd5;
    color: #c2410c;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

.req-content { flex: 1; }

.req-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #0a1f1a;
    margin-bottom: 4px;
}

.req-detail {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.req-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

.req-active {
    background: #dcfce7;
    color: #15803d;
}

.req-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Bottom grid: GDPR + Penalties */
.compliance-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .compliance-bottom-grid { grid-template-columns: 1fr 1fr; }
}

/* GDPR card */
.gdpr-card {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #ffedd5;
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}

.gdpr-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gdpr-icon {
    width: 40px;
    height: 40px;
    background: #ffedd5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdpr-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #0a1f1a;
}

.gdpr-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gdpr-item {
    display: flex;
    gap: 12px;
}

.gdpr-item svg { flex-shrink: 0; margin-top: 2px; }

.gdpr-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Penalties card */
.penalties-card {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #fecaca;
    background: linear-gradient(135deg, #fff1f2 0%, #fff 100%);
    margin-bottom: 24px;
}

.penalties-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.penalties-icon {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.penalties-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #0a1f1a;
}

.penalties-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.penalty-row {
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.penalty-who {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.penalty-period {
    font-size: 12px;
    color: #64748b;
}

.penalty-amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #dc2626;
    flex-shrink: 0;
    margin-left: 16px;
}

/* EU Context card */
.eu-context-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ffedd5;
    background: linear-gradient(135deg, #fff7ed 0%, #f8faff 100%);
}

.eu-context-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eu-context-icon {
    width: 36px;
    height: 36px;
    background: #ffedd5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eu-context-header h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #0a1f1a;
}

.eu-context-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════════════ */
.contact-new-section {
    background: linear-gradient(180deg, #0a1f1a 0%, #0a1f1a 100%);
}

.contact-new-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-new-grid {
        grid-template-columns: 3fr 2fr;
    }
}

/* Form */
.contact-form-wrapper {
    grid-column: 1;
}

.contact-new-form {
    border-radius: 16px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .form-grid-2col { grid-template-columns: 1fr 1fr; }
}

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

.contact-new-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fdba74;
    margin-bottom: 8px;
}

.contact-new-form input,
.contact-new-form textarea,
.contact-new-form select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.15s;
}

.contact-new-form input::placeholder,
.contact-new-form textarea::placeholder {
    color: rgba(251, 146, 60, 0.4);
}

.contact-new-form input:focus,
.contact-new-form textarea:focus,
.contact-new-form select:focus {
    border-color: #fb923c;
}

.contact-new-form select {
    background-color: #0a1f1a;
}

.contact-new-form select option {
    background: #0a1f1a;
    color: #fff;
}

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

.form-disclaimer {
    color: rgba(251, 146, 60, 0.4);
    font-size: 12px;
    text-align: center;
    margin-top: 16px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    border-radius: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.sidebar-card-blue {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

.sidebar-card-amber {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    padding: 20px;
}

.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.sidebar-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.15);
}

.sidebar-contact-label {
    font-size: 12px;
    color: rgba(251, 146, 60, 0.6);
}

.sidebar-contact-val {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.sidebar-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-check-item span {
    font-size: 14px;
    color: rgba(254, 215, 170, 0.7);
}

.sidebar-response {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-emoji {
    font-size: 28px;
}

.sidebar-response-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.sidebar-response-sub {
    font-size: 12px;
    color: rgba(251, 191, 36, 0.6);
    margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════════════
   WHY SECTION — VeriFactu + Sello Solutions
   ══════════════════════════════════════════════════════════════════ */
.why-section {
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .why-inner { padding: 96px 48px; }
}

/* ── Header ── */
.why-header {
    text-align: center;
    margin-bottom: 72px;
}

.why-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.why-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .why-header h2 { font-size: 40px; }
}

.why-subhead {
    color: #999;
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Two-column Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Cards ── */
.why-card {
    border-radius: 16px;
    padding: 36px;
}

.why-card-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.why-card-filled {
    background: rgba(249, 115, 22, 0.04);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.why-card p strong {
    color: #e0e0e0;
}

/* ── Check List ── */
.why-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.55;
}

.why-checklist li svg {
    flex-shrink: 0;
    color: #f97316;
    margin-top: 1px;
}

.why-checklist li strong {
    color: #e0e0e0;
}

/* ── Comparison Table ── */
.why-compare {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.why-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    font-size: 13px;
    line-height: 1.6;
}

.why-compare-row > div {
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.02);
}

.why-compare-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
}

.why-compare-header > div {
    background: rgba(255, 255, 255, 0.04);
}

.why-compare-header > div:last-child {
    color: #fb923c;
}

.why-compare-row strong {
    color: #fb923c;
}

.why-compare-row span {
    color: #777;
}

.why-compare-row div:last-child {
    background: rgba(249, 115, 22, 0.04);
}

/* ── Card CTA ── */
.why-card-cta {
    color: #ccc !important;
    font-size: 15px !important;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.12);
    margin-bottom: 0 !important;
}

/* ── Three Pillars ── */
.why-pillars {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 64px;
}

.why-pillars-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 48px;
}

.why-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .why-pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-pillar {
    text-align: center;
    padding: 32px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, transform 0.3s;
}

.why-pillar:hover {
    border-color: rgba(249, 115, 22, 0.25);
    transform: translateY(-4px);
}

.why-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
}

.why-pillar h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.why-pillar p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.why-pillar p strong {
    color: #d0d0d0;
}


/* ══════════════════════════════════════════════════════════════════
   TRUST BAR — Small stats bar
   ══════════════════════════════════════════════════════════════════ */
.trust-bar {
    background: url('/assets/1.jpg') center / cover no-repeat fixed;
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.trust-bar-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .trust-bar-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 28px 48px;
    }
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-display);
}

.trust-bar-item svg {
    flex-shrink: 0;
    color: #fb923c;
}


/* ══════════════════════════════════════════════════════════════════
   PRODUCT SECTION — Software-Introduktion
   ══════════════════════════════════════════════════════════════════ */
.product-section {
    position: relative;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/back.jpg') center / cover no-repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    
}

.product-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .product-inner { padding: 96px 48px; }
}

/* ── Header ── */
.product-header {
    text-align: center;
    margin-bottom: 72px;
}

.product-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .product-header h2 { font-size: 40px; }
}

.product-subhead {
    color: #999;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Core Product (mockup + text) ── */
.product-core {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .product-core {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Mockup Visual ── */
.product-core-visual {
    display: flex;
    justify-content: center;
}

.product-mockup {
    width: 100%;
    max-width: 440px;
    border-radius: 14px;
    overflow: hidden;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
}

.product-mockup-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #2a2a2a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.product-mockup-dot:first-child { background: #ff5f57; }
.product-mockup-dot:nth-child(2) { background: #febc2e; }
.product-mockup-dot:nth-child(3) { background: #28c840; }

.product-mockup-content {
    padding: 20px;
}

.product-mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-mockup-label {
    color: #ccc;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-display);
}

.product-mockup-badge-live {
    color: #4ade80;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.product-mockup-field {
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    color: #e0e0e0;
}

.product-mockup-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.product-mockup-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 104px;
    margin: 0 auto 12px;
}

.product-mockup-status {
    text-align: center;
    color: #4ade80;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(74, 222, 128, 0.06);
}

/* ── Core Text ── */
.product-core-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.product-core-text p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-core-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-core-list li {
    font-size: 14px;
    color: #999;
    padding-left: 20px;
    position: relative;
}

.product-core-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

/* ── 4 Differentiators Grid ── */
.product-diffs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

@media (min-width: 640px) {
    .product-diffs { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .product-diffs { grid-template-columns: repeat(4, 1fr); }
}

.product-diff {
    padding: 28px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s, transform 0.3s;
}

.product-diff:hover {
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
}

.product-diff-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(249, 115, 22, 0.08);
    color: #fb923c;
}

.product-diff h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.product-diff p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* ── Modular Add-ons ── */
.product-modules {
    margin-bottom: 80px;
    padding: 48px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.product-modules h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.product-modules-sub {
    color: #888;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.product-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .product-modules-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-module {
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s;
}

.product-module:hover {
    border-color: rgba(249, 115, 22, 0.15);
}

.product-module span:first-child {
    display: flex;
    align-items: center;
    color: #f97316;
}

.product-module span:last-child {
    color: #b0b0b0;
}

/* ── Data Sovereignty Callout ── */
.product-data {
    display: flex;
    gap: 24px;
    padding: 36px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.12);
    align-items: flex-start;
}

.product-data-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
}

.product-data-text {
    flex: 1;
}

.product-data-text h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.product-data-text p {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 10px;
}

.product-data-text p:last-child { margin-bottom: 0; }

.product-data-text strong {
    color: #d0d0d0;
}

/* ── Product Guarantee Badge ── */
.product-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.12);
    font-size: 14px;
    color: #a0d0a0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-guarantee svg {
    flex-shrink: 0;
    color: #4ade80;
    margin-top: 2px;
}

.product-guarantee strong {
    color: #4ade80;
}

/* ── Open Source Note ── */
.product-oss {
    margin-top: 28px;
    padding: 20px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.product-oss p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.product-oss svg {
    flex-shrink: 0;
    color: #fb923c;
}

.product-oss strong {
    color: #ccc;
}

.product-oss-link {
    display: inline-flex;
    align-items: center;
    color: #888;
    transition: color 0.2s;
    margin-left: 4px;
}

.product-oss-link:hover {
    color: #fff;
}


/* ══════════════════════════════════════════════════════════════════
   SERVICES SECTION — Zwei Wege zur Compliance
   ══════════════════════════════════════════════════════════════════ */
.services-section {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .services-inner { padding: 96px 48px; }
}

/* ── Header ── */
.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .services-header h2 { font-size: 40px; }
}

.services-subhead {
    color: #888;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Two Cards Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Card Base ── */
.svc-card {
    border-radius: 18px;
    padding: 40px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
    transform: translateY(-6px);
}

.svc-diy {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-diy:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.svc-full {
    background: rgba(249, 115, 22, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.svc-full:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
}

/* ── Recommended Badge ── */
.svc-badge-recommended {
    position: absolute;
    top: -1px;
    right: 28px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 8px 8px;
}

/* ── Card Top ── */
.svc-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.svc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-icon-dark {
    background: rgba(255, 255, 255, 0.06);
    color: #bbb;
}

.svc-icon-accent {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
}

.svc-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #777;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
}

.svc-tag-accent {
    color: #fb923c;
    background: rgba(249, 115, 22, 0.1);
}

/* ── Card Content ── */
.svc-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.svc-intro {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Price Block ── */
.svc-price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.svc-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.svc-full .svc-price {
    color: #fb923c;
}

.svc-price-note {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

/* ── Divider ── */
.svc-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 28px 0;
}

.svc-full .svc-divider {
    border-color: rgba(249, 115, 22, 0.1);
}

/* ── Feature List ── */
.svc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-bottom: 32px;
}

.svc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.55;
}

.svc-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-diy .svc-features li svg {
    color: #777;
}

.svc-full .svc-features li svg {
    color: #f97316;
}

/* ── Buttons ── */
.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font);
    margin-top: auto;
}

.svc-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    background: transparent;
}

.svc-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.svc-btn-filled {
    background: #f97316;
    color: #fff;
    border: none;
}

.svc-btn-filled:hover {
    background: #fb923c;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .svc-card { padding: 32px 24px; }
}


/* ══════════════════════════════════════════════════════════════════
   PRICE CALCULATOR SECTION
   ══════════════════════════════════════════════════════════════════ */
.calc-section {
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .calc-inner { padding: 96px 48px; }
}

/* ── Header ── */
.calc-header {
    text-align: center;
    margin-bottom: 64px;
}

.calc-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .calc-header h2 { font-size: 40px; }
}

.calc-subhead {
    color: #888;
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.calc-subhead strong {
    color: #ccc;
}

/* ── Slider Area ── */
.calc-slider-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .calc-slider-area {
        grid-template-columns: 1fr 240px 1fr;
    }
}

/* ── Cards (Competitor & Sello) ── */
.calc-card {
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.calc-card-competitor {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-card-sello {
    background: rgba(249, 115, 22, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.calc-card-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
    color: #888;
    background: rgba(255, 255, 255, 0.06);
}

.calc-card-badge-accent {
    color: #fb923c;
    background: rgba(249, 115, 22, 0.1);
}

.calc-card-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.calc-card-price {
    margin-bottom: 20px;
}

.calc-mo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.calc-once {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fb923c;
}

.calc-period {
    font-size: 16px;
    color: #777;
}

.calc-card-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fbbf24;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.08);
}

.calc-card-warning svg {
    flex-shrink: 0;
}

.calc-card-good {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4ade80;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(74, 222, 128, 0.08);
}

.calc-card-good svg {
    flex-shrink: 0;
}

.calc-card-cons,
.calc-card-pros {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.calc-card-cons li {
    font-size: 13px;
    color: #999;
    padding-left: 14px;
    position: relative;
}

.calc-card-cons li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #666;
}

.calc-card-pros li {
    font-size: 13px;
    color: #b0b0b0;
    padding-left: 14px;
    position: relative;
}

.calc-card-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
}

/* ── Slider Column ── */
.calc-slider-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.calc-slider-wrapper {
    width: 100%;
    position: relative;
}

.calc-slider-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.calc-slider-value span {
    font-size: 28px;
    color: #fb923c;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #333 0%, #f97316 100%);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    cursor: pointer;
    transition: transform 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    cursor: pointer;
}

.calc-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

/* ── Big Result Box ── */
.calc-bigbox {
    border-radius: 18px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 48px;
}

.calc-bigbox h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
}

.calc-bigbox-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

@media (max-width: 767px) {
    .calc-bigbox-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .calc-bigbox-vs {
        order: -1;
    }
}

.calc-bigbox-col {
    padding: 24px 16px;
    border-radius: 14px;
}

.calc-bigbox-competitor {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-bigbox-sello {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.calc-bigbox-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777;
    margin-bottom: 12px;
}

.calc-bigbox-number {
    display: block;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.calc-bigbox-sello .calc-bigbox-number {
    color: #fb923c;
}

.calc-bigbox-sub {
    font-size: 13px;
    color: #666;
}

.calc-bigbox-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.calc-bigbox-vs span:first-child {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #f97316;
}

.calc-bigbox-vs-label {
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-bigbox-verdict {
    text-align: center;
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-bigbox-verdict strong {
    color: #fb923c;
}

/* ── Caveats ── */
.calc-caveats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .calc-caveats { grid-template-columns: repeat(3, 1fr); }
}

.calc-caveat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-caveat svg {
    flex-shrink: 0;
    color: #f97316;
    margin-top: 2px;
}

.calc-caveat div {
    flex: 1;
}

.calc-caveat strong {
    display: block;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.calc-caveat p {
    font-size: 13px;
    color: #888;
    line-height: 1.55;
}


/* ══════════════════════════════════════════════════════════════════
   PRICING SECTION — Preise nach Unternehmensgruppe
   ══════════════════════════════════════════════════════════════════ */
.pricing-section {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .pricing-inner { padding: 96px 48px; }
}

/* ── Header ── */
.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .pricing-header h2 { font-size: 38px; }
}

.pricing-subhead {
    color: #888;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-subhead em {
    font-style: normal;
    color: #ccc;
}

/* ── Subsidy Banner ── */
.pricing-subsidy {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(74, 222, 128, 0.04);
    border: 1px solid rgba(74, 222, 128, 0.1);
    margin-bottom: 40px;
}

.pricing-subsidy-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1.3;
}

.pricing-subsidy-text {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

.pricing-subsidy-text strong {
    color: #4ade80;
}

/* ── Pricing Grid ── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Pricing Card Base ── */
.pricing-card {
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card-main {
    background: rgba(249, 115, 22, 0.03);
    border-color: rgba(249, 115, 22, 0.2);
    position: relative;
    z-index: 1;
}

.pricing-card-main:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.pricing-card-enterprise {
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-card-enterprise:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .pricing-card-main {
        transform: scale(1.03);
    }
    .pricing-card-main:hover {
        transform: scale(1.03) translateY(-6px);
    }
}

/* ── Badge ── */
.pricing-card-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 9999px;
    margin-bottom: 20px;
    color: #888;
    background: rgba(255, 255, 255, 0.06);
}

.pricing-card-main .pricing-card-badge {
    color: #fb923c;
    background: rgba(249, 115, 22, 0.12);
}

.pricing-card-enterprise .pricing-card-badge {
    color: #a0a0a0;
}

/* ── Title ── */
.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-who {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 0 0 auto;
}

/* ── Tagline / Price ── */
.pricing-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.12);
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
}

.pricing-tagline svg {
    flex-shrink: 0;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pricing-card-main .pricing-price {
    color: #fb923c;
}

.pricing-price-sub {
    font-size: 13px;
    color: #666;
    margin-bottom: 28px;
}

/* ── Feature List ── */
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #777;
}

.pricing-card-main .pricing-features li svg {
    color: #f97316;
}

.pricing-card-enterprise .pricing-features li svg {
    color: #a0a0a0;
}

/* ── Button ── */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font);
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    background: transparent;
}

.pricing-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.pricing-btn-filled {
    background: #f97316;
    color: #fff;
    border-color: transparent;
}

.pricing-btn-filled:hover {
    background: #fb923c;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    color: #fff;
}

/* ── Bottom Note ── */
.pricing-note {
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-note strong {
    color: #ccc;
}


/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════════════ */
.contact-section {
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px;
}

@media (min-width: 1024px) {
    .contact-inner { padding: 96px 48px; }
}

/* ── Header ── */
.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .contact-header h2 { font-size: 38px; }
}

.contact-subhead {
    color: #888;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Contact Grid ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 64px;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ── Contact Cards ── */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.contact-card-main {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-main:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(249, 115, 22, 0.03);
}

.contact-card-address {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .contact-card-address {
        grid-column: 1 / -1;
    }
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(249, 115, 22, 0.08);
    color: #fb923c;
}

.contact-card-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #777;
    margin-bottom: 8px;
}

.contact-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-card-hint {
    display: block;
    font-size: 13px;
    color: #666;
}

/* ── Closing CTA ── */
.contact-cta {
    text-align: center;
    padding: 48px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-cta p {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 28px;
}

.contact-cta p em {
    font-style: normal;
    color: #fb923c;
    font-weight: 600;
}

.contact-cta .btn-hero-primary {
    font-size: 16px;
    padding: 16px 32px;
}

.contact-cta .btn-hero-primary.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Booking Modal ── */
.booking-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.booking-overlay.active {
    display: flex;
}

.booking-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.booking-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}

.booking-close:hover { color: #fff; }

.booking-modal h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.booking-modal h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.booking-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 32px;
}

/* ── Nav ── */
.booking-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.booking-nav-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ccc;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
}

.booking-nav-btn:hover {
    background: rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.3);
    color: #fff;
}

#booking-week-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
}

/* ── Days Grid ── */
.booking-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.booking-day {
    padding: 14px 8px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    color: #b0b0b0;
    font-size: 13px;
}

.booking-day:hover {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.05);
    color: #fff;
}

.booking-day-name {
    display: block;
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.booking-day-num {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.booking-day-disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

/* ── Time Slots ── */
.booking-back {
    background: none;
    border: none;
    color: #fb923c;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    font-weight: 500;
}

.booking-back:hover { color: #f97316; }

.booking-selected-date,
.booking-selected-slot {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.booking-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.booking-time {
    padding: 12px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #b0b0b0;
    transition: all 0.15s;
}

.booking-time:hover {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.08);
    color: #fff;
}

.booking-time-booked {
    opacity: 0.15;
    cursor: default;
    pointer-events: none;
    text-decoration: line-through;
}

/* ── Form ── */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.15s;
}

.booking-form input:focus {
    border-color: #f97316;
}

.booking-form input::placeholder {
    color: #555;
}

/* ── Done State ── */
.booking-done-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

#booking-done-msg {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}

.booking-done-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.2s;
}

.booking-done-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}


/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    padding: 32px;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

.site-footer a { color: #64748b; }
.site-footer .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════════ */
.legal-page {
    padding: 120px 32px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f1f5f9;
}

.legal-page h2 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero-description { font-size: 16px; }
    .hero-inner { padding: 120px 20px 80px; }

    /* Mobile Nav */
    .nav-burger { display: flex; }
    .site-nav {
        padding: 0 16px;
        justify-content: flex-start;
        gap: 12px;
    }
    .site-nav .brand { margin-right: auto; }
    .site-nav .brand-logo { height: 80px; }
    .site-nav .lang-switch { margin-left: 0; }
    .site-nav .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 99;
        display: none;
    }
    .site-nav .nav-links.active {
        display: flex;
    }
    .site-nav .nav-links a {
        font-size: 20px;
        color: #ccc;
    }

    .section-container { padding: 64px 20px; }
    .section-header-center h2 { font-size: 28px; }
    .float-badge-deadline { left: -8px; bottom: -8px; }
    .float-badge-penalty { right: -4px; top: -8px; }
    .penalty-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .penalty-amount { margin-left: 0; }
    .cta-banner-blue { padding: 24px; }
    .form-grid-2col { grid-template-columns: 1fr; }
    .tech-h2 { font-size: 28px; }
}

/* ── Cost Slider ── */
#cost-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
    outline: none;
    cursor: pointer;
}
#cost-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}
#cost-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}
