/* ============================================
   ORBITON Holding GmbH – Design Slot 1
   ============================================ */

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --primary-dark: #0f2640;
    --secondary: #d4a843;
    --secondary-light: #e0be6a;
    --accent-bg: #e8f0fe;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #0f1b2d;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Z-Index Scale */
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-overlay: 30;
    --z-modal: 40;
    --z-toast: 50;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    z-index: 100;
    border-radius: var(--radius);
    font-weight: 600;
}
.skip-link:focus {
    top: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* --- Top Bar (Dark) --- */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--secondary);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--secondary);
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--secondary-light);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary);
}

/* --- Header (Sticky + Shadow on Scroll) --- */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 0;
}

.header.scrolled .container {
    height: 65px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    transition: height 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.header.scrolled .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
    background: rgba(212,168,67,0.08);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '';
    border: solid var(--text);
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 8px 0;
    border-top: 3px solid var(--secondary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Hero (Fullwidth Gradient left→right) --- */
.hero {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    color: var(--dark);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,168,67,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    padding: 15px 20px;
}

.trust-badge .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.trust-badge .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    display: block;
}

/* --- Section Titles --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .badge,
.page-header .badge {
    display: inline-block;
    background: rgba(212,168,67,0.12);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(212,168,67,0.25);
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Cards (Shadow + Gold Top-Border) --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 12px;
    color: var(--primary);
}

/* --- Firmen-Banner --- */
.company-banner {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0;
}

.company-banner .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.banner-item h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-item p {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Testimonials (Horizontal Cards + Quote SVG) --- */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.testimonial-quote-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary);
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- FAQ Accordion (+/- Icons) --- */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    transition: background 0.3s ease;
    gap: 15px;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--accent-bg);
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
    background: var(--secondary);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* --- Footer (4-Column, Dark) --- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--secondary);
}

/* --- Page Header (Subpages) --- */
.page-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Leistungen Zigzag --- */
.service-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-section:nth-child(even) {
    background: var(--light);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-section.reversed .service-content {
    direction: rtl;
}

.service-section.reversed .service-content > * {
    direction: ltr;
}

.service-icon-circle {
    width: 100px;
    height: 100px;
    background: var(--accent-bg);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-circle svg {
    width: 44px;
    height: 44px;
    fill: var(--primary);
}

.service-text h2 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
}

.service-visual {
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid var(--border);
}

/* Disclosure Box */
.disclosure-box {
    background: #fffbf0;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    padding: 25px 30px;
    margin: 40px 0;
}

.disclosure-box h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclosure-box p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* --- Geschäftsführung Profile --- */
.profile-section {
    padding: 60px 0;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 700;
    border: 4px solid var(--secondary);
}

.profile-card h2 {
    margin-bottom: 5px;
}

.profile-card .title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.profile-card .company {
    color: var(--text-light);
    margin-bottom: 20px;
}

.profile-bio {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    padding: 60px 0;
    background: var(--light);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--secondary);
}

.timeline-item .year {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Contact Form --- */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .form-error {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text);
}

/* Contact Sidebar */
.contact-sidebar {
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: 35px;
    border-top: 4px solid var(--secondary);
}

.contact-sidebar h3 {
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.contact-info-item span {
    font-size: 0.95rem;
    color: var(--text);
}

/* --- Legal Pages --- */
.legal-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.legal-content ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
    font-size: 0.9rem;
}

.legal-content table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.legal-content table tr:nth-child(even) {
    background: var(--light);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    flex: 1;
}

.cookie-banner a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--secondary-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--white);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-hover);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--white);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Fade Up Animation --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .cards-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-banner .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-section.reversed .service-content {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-hover);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
        border-top: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .cards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .company-banner .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        padding: 10px 12px;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .top-bar-right {
        display: none;
    }

    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .profile-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header .container {
        height: 65px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* --- Focus Visible --- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* --- Max-width for prose --- */
.legal-content p,
.service-text p,
.profile-bio p,
.faq-answer p,
.section-title p,
.card p,
.testimonial-text {
    max-width: 70ch;
}

/* --- Print --- */
@media print {
    .top-bar, .header, .cookie-banner, .back-to-top, .hamburger, .cta-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero, .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .hero h1, .hero p, .page-header h1, .page-header p {
        color: #000;
    }

    .card, .testimonial-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .footer {
        background: none;
        color: #000;
        border-top: 2px solid #000;
    }

    .footer-col h4, .footer-col a, .footer-col p {
        color: #000 !important;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
