/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #6366F1, #A855F7);
    color: #fff;
    text-decoration: none;
    padding: 16px 14px;
    border-radius: 12px 0 0 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: -4px 0 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    padding-right: 20px;
    box-shadow: -6px 0 30px rgba(99, 102, 241, 0.5);
}

.sticky-cta-text {
    display: block;
}

.sticky-cta-arrow {
    display: block;
    transform: rotate(90deg);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
}

:root {
    --bg-body: #0B0F19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --primary-color: #3B82F6;
    --secondary-color: #1E40AF;
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    --glow-gradient: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    --border-light: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --container-width: 1240px;
    --radius-lg: 24px;
    --radius-md: 12px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-brand-gradient {
    background: linear-gradient(90deg, #FFEB3B 0%, #FF5722 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 235, 59, 0.3));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-left: 16px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: #fff;
    width: 100%;
}

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


/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    /* Allow content to define width, or use max-width */
    width: auto;
    /* Allow content to define width, or use max-width */
    min-width: 800px;
    /* Minimum width */
    max-width: 90%;
    z-index: 1000;
    padding: 10px 10px;
    /* Tighter padding like the screenshot */
    background: rgba(13, 16, 23, 0.3);
    /* More transparent */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Slightly more visible border */
    border-radius: 999px;
    /* Full pill */
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    /* Inner highlight */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
    /* Inner padding */
}

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    margin-right: 40px;
    flex-shrink: 0;
}

.brand img {
    max-height: 40px;
    min-width: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: #9CA3AF;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 40px;
}

/* Update button in navbar to match Orizon's small white button */
.navbar .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: #fff;
    color: #000;
    border-radius: 99px;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* Hero */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150%;
    background: var(--glow-gradient);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced split to give image more space */
    gap: 60px;
    align-items: center;
}

/* ... existing styles ... */

.hero-image {
    width: 100%;
    height: auto;
    max-height: 800px;
    /* Increased from default/implicit */
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    height: 600px;
    /* Increased height for phone frame */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Smartphone Frame */
.smartphone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.smartphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
}

.smartphone-screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-float-1 {
    top: 50px;
    right: 0;
    padding: 15px 25px;
    border-radius: 99px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-card-float-2 {
    bottom: 50px;
    left: 0;
    padding: 15px 25px;
    border-radius: 99px;
    z-index: 2;
    animation: float 6s ease-in-out infinite reverse;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Logo Cloud */
.logo-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    /* Doubled size */
    max-width: 320px;
    filter: none;
    /* Full color */
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Features */


.features-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Cases Section */
.cases-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.case-card h3 {
    padding: 20px;
    font-size: 1.2rem;
    margin: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Split Sections */
.split-section {
    padding: 100px 0;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse .split-container {
    direction: rtl;
}

.split-content {
    direction: ltr;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #818CF8;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
}

.link-arrow {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #fff;
}

.visual-box {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing */
.pricing-section {
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    background: var(--bg-card);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    border-radius: 99px;
    border: 1px solid var(--border-light);
}

.pricing-toggle span {
    padding: 8px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-toggle span.active {
    background: #fff;
    color: #000;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Enforce equal width */
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.5);
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    position: relative;
}

.pricing-card.recommended::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price span.price-onepager,
.price span.price-photos,
.price span.price-bundle {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: transparent;
    color: var(--text-main);
}

.section-header-left {
    margin-bottom: 60px;
    max-width: 800px;
}

.badge-dark {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials-section h2 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-highlight {
    background: linear-gradient(90deg, #FFEB3B 0%, #FF5722 100%);
    background-size: 100% 40%;
    background-position: 0 90%;
    background-repeat: no-repeat;
}

.testimonials-section p {
    color: var(--text-muted);
}

.testimonial-card-detailed {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.testimonial-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.testimonial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-light);
}

.testimonial-video-wrapper iframe,
.testimonial-video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.testimonial-author span {
    color: var(--text-muted);
}

/* KNOLL Teaser */
.case-teaser-section {
    padding: 80px 0;
}

.case-teaser-card {
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    /* Blue gradient based on screenshot */
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.case-teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/pattern.png');
    /* Optional pattern */
    opacity: 0.1;
    pointer-events: none;
}

.teaser-logo {
    height: 30px;
    margin-bottom: 24px;
}

.teaser-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.teaser-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.teaser-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Card Stack Visual */
.teaser-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 300px;
    height: 350px;
}

.card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.layer-1 {
    background: #004488;
    transform: rotate(-5deg) translate(-20px, 10px);
    z-index: 1;
}

.layer-2 {
    background: #0055aa;
    transform: rotate(5deg) translate(20px, 5px);
    z-index: 2;
}

.card-main {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    /* Or image */
    border-radius: 12px;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    /* Mocking the flyer look */
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
}

.card-img {
    width: 80px;
    margin: 20px;
    filter: brightness(0) invert(1);
}

.card-overlay {
    padding: 20px;
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-overlay h3 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.card-badge {
    background: #0077cc;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ */
/* FAQ Grid Layout */
.faq-grid-section {
    padding: 120px 0;
}

.faq-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-content {
    width: 100%;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-content .section-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 100%;
}

@media (max-width: 992px) {
    .faq-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-sidebar {
        position: static;
    }
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-header::after {
    content: '+';
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 24px;
}

/* CTA */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #FFEB3B 0%, #FF5722 100%);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.3);
}

.cta-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 250px;
}

.footer-brand-logo {
    margin-right: 0 !important;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links span {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        height: auto;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .reverse .split-container {
        direction: ltr;
    }

    .split-content {
        order: 1;
    }

    .split-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        /* Reduced from 2.5rem */
    }

    h2 {
        font-size: 1.75rem;
        /* Reduced from 2rem */
    }

    /* General Section Padding Reduction */
    .hero-section {
        padding: 120px 0 60px;
    }

    .features-section,
    .about-section,
    .region-section,
    .partner-section,
    .projects-section,
    .faq-grid-section,
    .cta-section,
    .footer {
        padding: 60px 0;
        /* Reduced from 80px/100px/120px */
    }

    .section-header {
        margin-bottom: 40px;
        /* Reduced from 80px */
    }

    /* Hero Mobile Fixes */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: auto;
        margin-top: 20px;
    }

    .hero-image {
        max-height: 350px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        margin-left: 0;
        /* Reset margin for secondary button */
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .navbar {
        min-width: unset;
        width: 90%;
        top: 20px;
        padding: 12px 20px;
    }

    .navbar-container {
        padding: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0B0F19;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        /* Ensure menu is on top */
    }

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

    .nav-actions {
        display: none;
        /* Hide desktop actions on mobile */
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
        /* Ensure toggle is clickable */
    }

    /* Hide floating pills on mobile */
    .hero-card-float-1,
    .hero-card-float-2 {
        display: none;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .cases-grid,
    .faq-grid-wrapper,
    .projects-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Reduced gap */
    }

    .logo-grid {
        gap: 30px;
        /* Reduced from 60px */
    }

    .testimonial-card-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }

    .testimonial-tags {
        flex-wrap: wrap;
    }

    .testimonial-video-wrapper {
        order: -1;
        /* Show image/video first on mobile */
    }


    .logo-img {
        max-width: 140px;
        /* Smaller logos on mobile */
        max-height: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .case-meta-grid {
        grid-template-columns: 1fr;
    }

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

/* Case Study Styles */
.case-hero {
    padding: 180px 0 60px;
    position: relative;
}


.case-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.case-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-weight: 600;
    color: #fff;
}

.meta-services {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.case-video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.case-content-section {
    padding: 80px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img.fit-contain {
    object-fit: contain;
    padding: 40px;
    width: 100%;
    height: 100%;
}

.placeholder-visual {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
}

.gallery-caption {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.case-results-section {
    padding: 80px 0;
}

.results-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.result-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Reels Section */
.reels-section {
    padding: 80px 0;
    position: relative;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.reel-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.reel-wrapper {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.reel-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 1000px;
    /* Increased again by 30% */
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Adjust float cards position for overlap */
.hero-card-float-1 {
    top: 80px;
    right: -20px;
    /* Pull in or out? If image is big, it might cover it. We want pills to overlap image? Or image overlap pills? User said "pills should slightly overlap with the image". So pills z-index > image z-index. */
    padding: 15px 25px;
    border-radius: 99px;
    z-index: 2;
    /* Higher than image */
    animation: float 6s ease-in-out infinite;
}

.hero-card-float-2 {
    bottom: 80px;
    left: -20px;
    padding: 15px 25px;
    border-radius: 99px;
    z-index: 2;
    /* Higher than image */
    animation: float 6s ease-in-out infinite reverse;
}

/* Brand Text */
.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

/* Process Section */
/* Process Section */
/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.process-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.step-number {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Benefits Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #fff;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.check-list-large {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-list-large li {
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.check-list-large li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.check-list-large strong {
    color: #fff;
}

.team-grid {
    display: block;
    width: 100%;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    margin: 0;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.team-img-placeholder {
    width: 140px;
    height: 140px;
    background: #252b3b;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.team-img-placeholder::after {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.5;
}

.team-card h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.team-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

/* Region Section */
.region-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.region-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.region-card {
    background: var(--bg-card);
    padding: 12px 24px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Vehicle Showcase Section */
.vehicle-section {
    padding: 80px 0;
}

.vehicle-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vehicle-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.vehicle-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.vehicle-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
}

.vehicle-feature-icon {
    font-size: 1.3rem;
}

.vehicle-image-container {
    border-radius: 16px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .vehicle-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vehicle-text h2 {
        font-size: 1.6rem;
    }
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    opacity: 0.7;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    /* Placeholder style */
    border: 2px dashed rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-content {
    padding: 24px;
}

.project-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.project-location {
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* Career Section */
.career-section {
    padding: 80px 0;
}

.career-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.career-content h2 {
    margin-bottom: 16px;
}

.career-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.check-list-row {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.check-list-row li {
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 768px) {
    .career-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .check-list-row {
        justify-content: center;
    }
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox input {
    margin-top: 3px;
}

.form-checkbox a {
    color: #fff;
    text-decoration: underline;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-color);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    background: #fff;
    color: #000;
    border: none;
}

.btn-full:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.contact-direct {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-direct p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: background 0.3s ease;
    font-weight: 600;
}

.btn-direct:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-direct.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-direct.whatsapp:hover {
    background: #128C7E;
}

/* External Contact Buttons (Sidebar) */
.contact-separator {
    text-align: center;
    margin: 24px 0 16px;
}

.contact-separator p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-buttons-external {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-buttons-external .btn-direct {
    width: 100%;
    margin-bottom: 0;
    padding: 14px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-buttons-external .phone-link {
    background: var(--bg-card);
    /* Dark background for phone button */
}

.contact-buttons-external .whatsapp {
    background: #25D366;
    /* WhatsApp Green */
    border: none;
    font-weight: 700;
}

/* Force White Text in Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    color: #ffffff !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Force White Text for Checkbox Label */
.form-checkbox label {
    color: #ffffff !important;
}

/* Wide Contact Section */
/* Wide Contact Section */
.contact-wide-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    /* Dark Blue to Light Blue */
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-wide-form .form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-wide-form .form-checkbox input {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.contact-wide-form .form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.4;
}

.contact-wide-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-wide-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-wide-content {
    text-align: center;
}

.contact-wide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.contact-wide-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-wide-form .form-group {
    margin-bottom: 16px;
}

.contact-wide-form input,
.contact-wide-form select,
.contact-wide-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-wide-form input::placeholder,
.contact-wide-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-wide-form input:focus,
.contact-wide-form select:focus,
.contact-wide-form textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-wide-form select option {
    background: #4F46E5;
    color: #fff;
}

.contact-wide-form .btn {
    width: 100%;
    background: #fff;
    color: #4F46E5;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 99px;
    margin-top: 10px;
}

.contact-wide-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-person-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.contact-person-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    border: none;
    margin-bottom: 0px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.contact-person-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    margin-top: 10px;
}

.jobs-section {
    padding: 80px 0;
    background: var(--bg-body);
    color: #fff;
}

.jobs-section .section-header h2,
.jobs-section .section-header p {
    color: #fff;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.job-header {
    margin-bottom: 20px;
    padding-right: 60px;
    /* Space for icon */
    position: relative;
}

.job-icon-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    color: #F97316;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.job-tag {
    background: #F97316;
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-tag svg {
    width: 16px;
    height: 16px;
}

.job-description {
    color: #374151;
    margin-bottom: 32px;
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.job-footer {
    margin-top: auto;
}

.job-btn {
    width: 100%;
    text-align: center;
    background: #F97316;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
    display: block;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.job-btn:hover {
    background: #EA580C;
    transform: translateY(-1px);
}

.contact-person-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.contact-detail-item span {
    font-size: 1.2rem;
}

.contact-detail-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-wide-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-wide-content h2 {
        font-size: 2.5rem;
    }
}

/* Alternating Section Backgrounds */
main>section:nth-child(even):not(#kontakt) {
    background-color: var(--bg-card);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-body);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}