/* CSS Reset & Premium Variables */

:root {
    /* Color Palette */
    --primary-color: #00e676; /* Vibrant Green */
    --primary-hover: #00c853;
    --dark-bg: #0a0a0a; /* Deep Black */
    --darker-bg: #121212; /* Slightly lighter black for contrast */
    --dark-text: #222222;
    --gray-bg: #f8f9fa; /* Very light gray for clean look */
    --gray-text: #555555;
    --white: #ffffff;
    
    /* WhatsApp */
    --whatsapp-color: #25d366;
    --whatsapp-hover: #128c7e;
    
    /* Typography */
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    /* Animations & Effects */
    --transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 10px 30px rgba(0, 230, 118, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

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

img {
    max-width: 100%;
    height: auto;
}

picture {
    max-width: 100%;
}

.hero-image picture,
.image-block picture,
.trust-badge-container picture,
.text-center picture {
    display: contents;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--dark-text);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 18px; /* Größere, besser lesbare Grundschrift */
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Lightweight local icon fallback. Removes the external Font Awesome request. */
.fa-solid,
.fa-brands,
.fa-regular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
    line-height: 1;
}

.fa-solid::before,
.fa-brands::before,
.fa-regular::before {
    display: inline-block;
}

.fa-car-burst::before { content: "\25C6"; }
.fa-phone::before,
.fa-phone-volume::before { content: "\260E"; }
.fa-whatsapp::before {
    content: "W";
    font-size: 0.8em;
    font-weight: 900;
}
.fa-bars::before { content: "\2630"; }
.fa-envelope::before { content: "\2709"; }
.fa-star::before { content: "\2605"; }
.fa-check::before { content: "\2713"; }
.fa-location-dot::before { content: "\25CF"; }
.fa-hand-holding-dollar::before { content: "\20AC"; }
.fa-clock::before { content: "\25F7"; }
.fa-scale-balanced::before { content: "\2696"; }
.fa-user-shield::before { content: "\25C8"; }
.fa-file-signature::before { content: "\270E"; }
.fa-chevron-down::before { content: "\2304"; }
.fa-paper-plane::before { content: "\27A4"; }

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2.5rem; }
.mb-5 { margin-bottom: 4rem; }
.mt-3 { margin-top: 2rem; }

.bg-light { background-color: var(--gray-bg); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.bg-green { background-color: var(--darker-bg); color: var(--white); position: relative; overflow: hidden; }
.bg-green::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,230,118,0.05) 0%, rgba(10,10,10,0) 70%);
    pointer-events: none;
}

/* Buttons (Premium & 3D Effect) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition);
}

.btn:hover::after {
    transform: translateY(0);
}

.btn i { margin-right: 12px; font-size: 1.3rem; }

.btn-green {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--dark-bg);
    box-shadow: var(--shadow-green);
}

.btn-green:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, var(--whatsapp-color), #1ebe5d);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-call {
    background-color: var(--darker-bg);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-call:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.btn-outline-white {
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 16px 38px;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.btn-outline-dark {
    background-color: rgba(0,0,0,0.05);
    color: var(--dark-text);
    border: 2px solid rgba(0,0,0,0.2);
    padding: 16px 38px;
}

.btn-outline-dark:hover {
    background-color: var(--dark-text);
    color: var(--white);
    transform: translateY(-5px);
}

/* Header - Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo {
    flex: 1 1 auto;
    min-width: 0;
}

.logo a {
    display: flex;
    align-items: center;
    min-width: 0;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-text);
    letter-spacing: 0;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-right: 12px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 0 0 auto;
}

.contact-links {
    display: flex;
    gap: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-link.phone { color: var(--dark-text); }
.contact-link.whatsapp { color: var(--whatsapp-color); }
.contact-link:hover { transform: translateY(-2px); opacity: 0.8; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-text);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: var(--white);
    padding: 30px 20px;
    border-top: 1px solid #eee;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.02);
}

.mobile-nav.active { display: block; animation: slideDown 0.3s ease; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-text);
}

.mobile-nav a:hover { color: var(--primary-color); }

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Ein dynamischerer Zoom-Effekt */
    animation: zoomIn 20s infinite alternate linear;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    background: #091f14; /* Darker premium green background for contrast */
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    max-width: 100%;
    line-height: 1.4;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.1);
}

.hero h1,
.hero-split h1 {
    max-width: 100%;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.hero h1 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.text-block {
    max-width: 950px;
    margin: 0 auto;
}

.text-block h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: inherit;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.2;
    letter-spacing: 0;
}

.text-block h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-top: 15px;
    border-radius: 3px;
}

.text-block h3 {
    font-size: 2rem;
    font-weight: 700;
}

.text-block p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: inherit;
    opacity: 0.85;
}

.bg-dark .text-block p { opacity: 0.8; }

/* Features & Lists (Glassmorphism Cards) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.feature-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.feature-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.custom-list li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: var(--gray-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.custom-list li:hover {
    background: #eefdf4;
    transform: translateX(10px);
}

.custom-list i {
    color: var(--primary-color);
    margin-top: 4px;
    margin-right: 20px;
    font-size: 1.4rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tag {
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.cities-list li {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    font-size: 1.2rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.cities-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.cities-list i {
    color: var(--primary-color);
    margin-right: 15px;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    border-color: rgba(0,230,118,0.3);
}

.trust-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.trust-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-bg);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
    background-color: var(--white);
    font-size: 1.15rem;
    opacity: 0.85;
}

.contact-form-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 0 30px;
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 0;
}

.footer-about p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul a {
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p, .footer-hours p {
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.footer-contact a { color: #999; font-weight: 600; }
.footer-contact a:hover { color: var(--primary-color); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1, .hero-split h1 { font-size: 3.8rem; }
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .hero h1, .hero-split h1 { font-size: 3.2rem; }
    .text-block h2 { font-size: 2.4rem; }
    /* Hide desktop contact links and show hamburger at tablet width */
    .header-right .contact-links, .header-right .btn-green { display: none; }
    .mobile-menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 80px; }
    .hero h1, .hero-split h1 { font-size: 2.15rem; }
    .hero-text { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .text-block h2 { font-size: 2rem; }
    .content-section { padding: 70px 0; }
    .feature-box { padding: 30px; }
}

/* Small device logo scaling */
@media (max-width: 540px) {
    .container { padding: 0 16px; }
    .logo a { font-size: 0.88rem; letter-spacing: 0; }
    .logo-icon { font-size: 1.05rem; margin-right: 5px; }
    .mobile-menu-toggle { font-size: 1.65rem; }
    .hero-badge { font-size: 0.82rem; letter-spacing: 1.2px; }
    .hero h1, .hero-split h1 { font-size: 1.95rem; }
    .hero-split .hero-content { max-width: 360px; }
}

@media (max-width: 360px) {
    .logo a { font-size: 0.8rem; }
    .logo-icon { font-size: 1rem; margin-right: 4px; }
    .hero h1, .hero-split h1 { font-size: 1.9rem; }
}

/* --- NEW: 3D Images & Split Layouts --- */

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 150px 0 100px;
    background: radial-gradient(circle at 10% 50%, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--dark-text);
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}
.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 3;
}
.hero-split::after {
    content: '';
    position: absolute;
    top: 20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.hero-split .hero-content {
    flex: 1;
    min-width: 0;
    max-width: 650px;
    z-index: 3;
}
.hero-split .hero-image {
    flex: 1;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}
.hero-split .hero-image img {
    max-width: 120%;
    height: auto;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.content-image-split {
    display: flex;
    align-items: center;
    gap: 60px;
}
.content-image-split.reverse {
    flex-direction: row-reverse;
}
.content-image-split .text-block { 
    flex: 1; 
    margin: 0; 
}
.content-image-split .image-block { 
    flex: 1; 
    text-align: center; 
}
.content-image-split .image-block img {
    max-width: 110%;
    border-radius: 20px;
}

.trust-badge-container {
    text-align: center;
    margin-bottom: -60px;
    position: relative;
    z-index: 5;
}
.trust-badge-container img {
    max-width: 250px;
}

/* --- Form Styles & Glass Panel --- */
.glass-panel {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.custom-form input:focus, .custom-form textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    background: #ffffff !important;
    box-shadow: 0 0 10px rgba(0,230,118,0.3) !important;
}

/* --- Floating Contact Sidebar --- */
/* Floating sidebar: use opacity/visibility instead of translateX(100px)
   to avoid extending the viewport width and triggering mobile zoom-out. */
.floating-contact-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.floating-contact-sidebar.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.floating-icon.whatsapp { background-color: #25D366; }
.floating-icon.phone { background-color: #3b82f6; }
.floating-icon.form { background-color: var(--primary-color); }

.floating-icon span {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.floating-icon:hover span {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-contact-sidebar {
        right: 15px;
        gap: 10px;
    }
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-split { padding-top: 120px; }
    .hero-split-container { flex-direction: column; text-align: center; }
    .hero-split .hero-content { margin: 0 auto; width: 100%; }
    .hero-split .hero-image { order: 2; width: 100%; margin-top: 30px; }
    .hero-split .hero-image img { max-width: 100%; margin-top: 0; }
    .content-image-split, .content-image-split.reverse { flex-direction: column; text-align: center; }
    .content-image-split .text-block h2::after { margin: 15px auto; }
}

/* --- Hero Trust Indicator Row --- */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 35px;
    font-size: 0.95rem;
    color: var(--dark-text);
    flex-wrap: wrap;
}

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

.trust-rating .stars {
    color: #ffb300; /* Gold stars */
    display: flex;
    gap: 2px;
}

.trust-rating .stars i {
    font-size: 0.9rem;
}

.hero-trust-row .divider {
    color: #cbd5e1;
    font-weight: 300;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b1f14;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #00e676;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00e676;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: pulse 2s infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .hero-trust-row {
        justify-content: center;
        gap: 12px;
        margin-top: 25px;
    }
    .hero-trust-row .divider {
        display: none; /* Hide vertical bar when wrapping */
    }
    .status-indicator, .trust-rating {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .rating-text {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}
