/* ECO Clean Subpage Styles */
:root {
    --color-bg: #fafafa;
    --color-bg-alt: #f0fdf4;
    --color-card: #ffffff;
    --color-text: #0a0a0a;
    --color-text-secondary: #525252;
    --color-text-muted: #737373;
    --color-accent: #10b981;
    --color-accent-light: #34d399;
    --color-accent-dark: #059669;
    --color-border: #e5e5e5;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 105;
    padding: 16px 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.nav-logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
}

.nav-dropdown-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-btn {
    color: var(--color-accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-dropdown-item:hover {
    background: var(--color-bg-alt);
    color: var(--color-accent);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-phone:hover {
    background: var(--color-accent-dark);
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 968px) {
    .nav-links {
        display: none !important;
    }
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 101;
        padding: 80px 24px 24px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-nav-link {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-text);
        text-decoration: none;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-nav-link span {
        color: var(--color-accent);
    }

    .mobile-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
        padding: 10px 0;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-text);
        cursor: pointer;
    }

    .mobile-dropdown-header svg {
        width: 24px;
        height: 24px;
        transition: transform 0.3s;
    }

    .mobile-dropdown-header.active svg {
        transform: rotate(180deg);
    }

    .mobile-dropdown-content {
        display: none;
        padding-left: 16px;
        margin-top: 10px;
    }

    .mobile-dropdown-content.active {
        display: block;
    }

    .mobile-sub-link {
        display: block;
        padding: 12px 0;
        color: var(--color-text-secondary);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .mobile-menu-cta {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px;
        background: var(--color-accent);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.1rem;
    }
}



/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    max-width: 600px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-title span {
    color: var(--color-accent);
}

.page-hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.page-hero-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.page-hero-cta svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Pricing Cards */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-bg-alt);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    fill: none;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-label {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.features-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.features-title span {
    color: var(--color-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-alt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    fill: none;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Service Area */
.area-section {
    padding: 80px 0;
}

.area-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
}

.area-content {
    position: relative;
    z-index: 1;
}

.area-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.area-title span {
    color: var(--color-accent);
}

.area-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Steps */
.steps-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Info Box */
.info-section {
    padding: 60px 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.info-box-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-accent-dark);
}

.info-box-content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.info-box-content ul {
    list-style: none;
    margin-top: 16px;
}

.info-box-content li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.info-box-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--color-accent);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cta-btn-primary {
    background: var(--color-accent);
    color: white;
}

.cta-btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer-logo span {
    color: var(--color-accent);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-column-title {
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e8651a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff8c42;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8651a;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item a {
    color: #e8651a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #ff8c42;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    stroke-width: 2;
    fill: none;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: #e8651a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #ff8c42;
}

/* FAQ / Wissenswertes Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-left: 36px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO TRUST GRID (Premium Monochrome Badges for Subpages)
   ═══════════════════════════════════════════════════════════ */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.trust-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4d4d4;
    transition: background 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    border-color: var(--color-accent);
}

.trust-card:hover::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.trust-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.trust-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.trust-card:hover .trust-card-icon img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.trust-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trust-card-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #a3a3a3;
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.4s ease;
}

.trust-card:hover .trust-card-value {
    color: var(--color-accent);
}

.trust-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.trust-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.trust-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: #f0f0f0;
    color: #737373;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-card-tag {
    background: var(--color-accent);
    color: white;
}

.trust-card.featured {
    background: linear-gradient(145deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid #e5e5e5;
}

.trust-card.featured:hover {
    border-color: var(--color-accent);
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 100%);
}

.trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.02) 50%);
    transition: all 0.4s ease;
}

.trust-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, rgba(16, 185, 129, 0.05) 50%);
}

@media (max-width: 968px) {
    .page-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .hero-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-card {
        padding: 20px;
    }

    .trust-card-value {
        font-size: 1.75rem;
    }

    .trust-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
}

@media (max-width: 520px) {
    .hero-trust-grid {
        grid-template-columns: 1fr;
    }
}