html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
    padding: 6rem 0;
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 999px;
}

.container {
    width: 100%;
}

/*
|--------------------------------------------------------------------------
| Navigation
|--------------------------------------------------------------------------
*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-navbar {
    min-height: 72px;
    background: var(--nav-bg);
	border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(18px);
	transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.site-header.is-scrolled .site-navbar {
    background: var(--nav-bg-scrolled);
    border-bottom-color: var(--nav-border-scrolled);
    box-shadow: var(--nav-shadow-scrolled);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    color: var(--hero-text-color);
}

.site-brand:hover {
    color: #ffffff;
}

.site-logo {
    display: block;
    width: auto;
    max-height: 42px;
}

.site-nav-list {
    gap: 0.25rem;
}

.site-nav-link {
	position: relative;
    color: var(--nav-link-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.site-nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.25rem;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.5);
    transition: all 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus,
.site-nav-link.is-active {
    color: var(--nav-link-hover);
}
.site-nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav-button {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    color: #0b0b0b;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
}

.site-nav-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.site-navbar-toggler {
    border: 1px solid rgba(255,255,255,0.22);
}

.site-navbar-toggler:focus {
    box-shadow: none;
}

.site-navbar .navbar-toggler-icon {
    filter: invert(1);
}

section[id] {
    scroll-margin-top: 96px;
}

/*
|--------------------------------------------------------------------------
| Hero Section
|--------------------------------------------------------------------------
*/

.hero-section {
    position: relative;
    min-height: calc(92vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
   color: var(--hero-text-color);
	background:
		var(--hero-overlay-desktop),
		var(--hero-bg-image) right center / cover no-repeat,
		var(--hero-bg-fallback);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-glow);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: calc(92vh - 72px);
}

.hero-content {
    max-width: 640px;
    padding: 40px 0;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1.15rem;
    color: var(--brand-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1.4rem;
    color: var(--hero-text-color);
    font-size: clamp(3.4rem, 5.2vw, 4.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 2rem;
    color: var(--hero-text-muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    color: var(--hero-trust-color);
    font-size: 1rem;
}

/*
|--------------------------------------------------------------------------
| Hero Buttons
|--------------------------------------------------------------------------
*/

.btn-primary-hero {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    color: #0b0b0b;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.btn-primary-hero:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.btn-outline-light-hero {
    border: 2px solid rgba(255,255,255,0.34);
    color: #ffffff;
    background: transparent;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.btn-outline-light-hero:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/*
|--------------------------------------------------------------------------
| Section Basics
|--------------------------------------------------------------------------
*/

.section-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--section-eyebrow-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 0;
    color: var(--section-title-color);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-text {
    margin-bottom: 0;
    color: var(--section-text-color);
    font-size: 1.12rem;
    line-height: 1.75;
}

/*
|--------------------------------------------------------------------------
| Services Section
|--------------------------------------------------------------------------
*/

.services-section {
    background: var(--services-bg);
    color: var(--section-text-color);
}

.services-intro {
    margin-bottom: 4rem;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 2rem;
	
	display: flex;           
    flex-direction: column;  
	
    border: 1px solid var(--card-border);
    border-radius: 24px;
    background: var(--card-bg);
    transition: all 0.25s ease;
}

.service-card:hover {
     transform: translateY(-8px);

    border-color: var(--card-border-hover);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.12),
        0 10px 30px rgba(0,0,0,0.08);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--brand-primary),
        transparent
    );

    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(201,161,58,0.12),
            transparent 40%
        );

    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-title {
    color: var(--brand-dark);
}

.service-number {
    margin-bottom: 2.5rem;
    color: var(--service-number-color);
    font-size: 1.00rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-title {
    margin-bottom: 1rem;
    color: var(--card-title-color);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
	
	flex-grow: 1;
	transition: color 0.25s ease;
}

.service-text {
    margin-bottom: 1.5rem;
    color: var(--card-text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.service-link {
    color: var(--service-link-color);
    font-weight: 700;
	
	margin-top: auto;
	 transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--service-link-hover);
}

.service-card:hover .service-link {
    color: var(--brand-primary);
}

/*
|--------------------------------------------------------------------------
| Benefits / Trust Section
|--------------------------------------------------------------------------
*/

.benefits-section {
    background: var(--benefits-bg);
}

.benefits-intro {
    margin-bottom: 4rem;
}

.benefits-grid {
    margin-bottom: 5rem;
}

.benefit-card {
    position: relative;
    height: 100%;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.25s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--benefit-card-glow);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: var(--card-shadow-hover);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-number {
    position: relative;
    margin-bottom: 2.25rem;
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.benefit-title {
    position: relative;
    margin-bottom: 1rem;
    color: var(--card-title-color);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
}

.benefit-text {
    position: relative;
    margin-bottom: 0;
    color: var(--card-text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/*
|--------------------------------------------------------------------------
| Trust Panel
|--------------------------------------------------------------------------
*/

.trust-panel {
    margin-bottom: 5rem;
    padding: 3rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, var(--trust-glow), transparent 32%),
        var(--trust-bg);
    border: 1px solid var(--trust-border);
    color: var(--trust-text-color);
}

.trust-item {
    height: 100%;
}

.trust-number {
    margin-bottom: 0.35rem;
    color: var(--brand-primary);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.trust-label {
    margin-bottom: 0.85rem;
    color: var(--trust-heading-color);
    font-size: 1.1rem;
    font-weight: 800;
}

.trust-text {
    margin-bottom: 0;
    color: var(--trust-text-color);
    font-size: 1rem;
    line-height: 1.65;
}

/*
|--------------------------------------------------------------------------
| Testimonial Carousel Overflow Fix
|--------------------------------------------------------------------------
*/

#testimonialCarousel {
    overflow: visible;
}

#testimonialCarousel .carousel-inner {
    overflow: visible;
}

#testimonialCarousel .carousel-item {
    overflow: visible;
    padding: 1rem 0;
}

/*
|--------------------------------------------------------------------------
| Testimonials
|--------------------------------------------------------------------------
*/

.testimonial-area {
    position: relative;
}

.testimonial-heading {
    margin-bottom: 0;
    color: var(--section-title-color);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.testimonial-card {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--testimonial-border);
    background: var(--testimonial-bg);
    box-shadow: none;
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--testimonial-shadow-hover);
}

.testimonial-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--testimonial-image-bg);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.04);
}

.testimonial-card-content {
    padding: 2rem;
}

.testimonial-stars {
    margin-bottom: 1.25rem;
    color: var(--brand-primary);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--testimonial-text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--testimonial-avatar-border);
}

.testimonial-author strong {
    display: block;
    color: var(--testimonial-author-color);
    font-weight: 800;
}

.testimonial-author span {
    display: block;
    color: var(--testimonial-company-color);
    font-size: 0.95rem;
}

/*
|--------------------------------------------------------------------------
| Modules Section
|--------------------------------------------------------------------------
*/

.modules-section {
    background: var(--modules-bg);
}

.modules-intro {
    margin-bottom: 4rem;
}

/* MODULE CARDS */

.module-card {
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    height: 100%;
}

.module-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.module-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    margin-bottom: 0.6rem;
}

/* PLANS */

.plans-wrapper {
    padding: 3rem;
    border-radius: 32px;
    background: var(--plans-bg);
}

.plan-card {
    padding: 2rem;
    border-radius: 24px;
    background: var(--plan-bg);
    border: 1px solid var(--plan-border);
    height: 100%;
}

.plan-card.highlight {
    border-color: var(--brand-primary);
    transform: scale(1.03);
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 800;
	color: var(--brand-white);
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.plan-list {
    list-style: none;
    padding: 0;
	color: var(--brand-white);
}

.plan-list li {
    margin-bottom: 0.6rem;
}

/*
|--------------------------------------------------------------------------
| Process Section
|--------------------------------------------------------------------------
*/

.process-section {
    background: var(--process-bg);
}

.process-intro {
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-number {
    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--process-number-bg);
    color: var(--process-number-color);

    font-weight: 800;
    font-size: 1.1rem;
}

.process-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.process-content p {
    color: var(--card-text-color);
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| FAQ Section
|--------------------------------------------------------------------------
*/

.faq-section {
    background: var(--faq-bg);
}

.faq-intro {
    margin-bottom: 4rem;
}

.faq-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--faq-border);
    border-radius: 20px;
    background: var(--faq-item-bg);
    box-shadow: var(--faq-shadow);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--faq-border);
}

.faq-question {
    padding: 1.4rem 1.6rem;
    background: var(--faq-item-bg);
    color: var(--faq-question-color);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: none;
}

.faq-question:not(.collapsed) {
    background: var(--faq-active-bg);
    color: var(--faq-question-color);
    box-shadow: none;
}

.faq-question:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-question::after {
    filter: var(--faq-icon-filter);
}

.faq-answer {
    padding: 0 1.6rem 1.5rem;
    color: var(--faq-answer-color);
    font-size: 1.05rem;
    line-height: 1.75;
    background: var(--faq-active-bg);
}

/*
|--------------------------------------------------------------------------
| Contact Section
|--------------------------------------------------------------------------
*/

.contact-section {
    background: var(--contact-bg);
}

.contact-content {
    position: sticky;
    top: 110px;
}

.contact-panel {
    padding: 2.25rem;
    border-radius: 28px;
    border: 1px solid var(--contact-panel-border);
    background: var(--contact-panel-bg);
    box-shadow: var(--contact-panel-shadow);
}

.contact-form .form-label {
    color: var(--contact-label-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-form .form-control {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid var(--contact-input-border);
    background: var(--contact-input-bg);
    color: var(--contact-input-color);
    font-size: 1rem;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem var(--contact-input-focus);
}

.contact-form .form-check {
    margin: 0.5rem 0 1rem;
}

.contact-form .form-check-label {
    color: var(--contact-privacy-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

/*
|--------------------------------------------------------------------------
| Contact Map (Static)
|--------------------------------------------------------------------------
*/

.contact-map {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--contact-panel-border);
}

.contact-map a {
    display: block;
    position: relative;
}

.contact-map-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.contact-map-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.55);
    color: #ffffff;

    font-weight: 700;
    font-size: 1rem;

    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-map:hover .contact-map-overlay {
    opacity: 1;
}

.contact-map:hover .contact-map-image {
    transform: scale(1.05);
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    padding: 5rem 0 2rem;
    background: var(--footer-bg);
    color: var(--footer-text-color);
}

.site-footer-main {
    padding-bottom: 3rem;
}

.site-footer-logo {
    display: block;
    width: auto;
    max-height: 46px;
    margin: 0 auto 1.5rem; /* zentriert */
}

.site-footer-name {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--footer-heading-color);
    font-size: 1.4rem;
    font-weight: 800;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer-brand p {
    max-width: 360px;
    margin-bottom: 0;
    color: var(--footer-text-color);
    line-height: 1.7;
}

.site-footer-title {
    margin-bottom: 1.2rem;
    color: var(--footer-heading-color);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer-links a,
.site-footer-links span {
    color: var(--footer-link-color);
    font-size: 1rem;
}

.site-footer-links a:hover {
    color: var(--footer-link-hover);
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--footer-border);
    color: var(--footer-bottom-color);
    font-size: 0.95rem;
}

.site-footer-bottom a {
    color: var(--footer-bottom-link-color);
    font-weight: 700;
}

.site-footer-bottom a:hover {
    color: var(--footer-link-hover);
}

.site-footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.site-footer-socials a {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid var(--footer-social-border);
    background: var(--footer-social-bg);
    color: var(--footer-social-color);

    transition: all 0.25s ease;
}

.site-footer-socials a:hover {
    background: var(--footer-social-bg-hover);
    border-color: var(--footer-social-border-hover);
    color: var(--footer-social-color-hover);
    transform: translateY(-3px);
}

.site-footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/*
|--------------------------------------------------------------------------
| Legal Pages
|--------------------------------------------------------------------------
*/

.legal-section {
    background: var(--legal-bg);
    padding: 5rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 2rem;
    color: var(--legal-title-color);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--legal-heading-color);
    font-size: 1.6rem;
    font-weight: 800;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--legal-heading-color);
    font-size: 1.25rem;
    font-weight: 800;
}

.legal-content p,
.legal-content li {
    color: var(--legal-text-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--legal-link-color);
    font-weight: 700;
}

.legal-content a:hover {
    color: var(--legal-link-hover);
}

.required-marker {
    color: var(--form-required-color);
    font-weight: 800;
}

.form-required-note {
    margin: 0 0 1rem;
    color: var(--form-required-note-color);
    font-size: 0.9rem;
}

/*
|--------------------------------------------------------------------------
| About Page
|--------------------------------------------------------------------------
*/

.about-hero-section {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 85% 20%, var(--about-hero-glow), transparent 32%),
        var(--about-hero-bg);
}

.about-hero-title {
    margin-bottom: 1.5rem;
    color: var(--about-title-color);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.about-hero-text {
    max-width: 640px;
    margin-bottom: 2rem;
    color: var(--about-text-color);
    font-size: 1.18rem;
    line-height: 1.75;
}

.about-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-facts span {
    padding: 0.65rem 1rem;
    border: 1px solid var(--about-pill-border);
    border-radius: 999px;
    background: var(--about-pill-bg);
    color: var(--about-pill-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.about-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--about-image-border);
    background: var(--about-image-bg);
}

.about-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.28));
    pointer-events: none;
}

.about-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-content-section {
    background: var(--about-content-bg);
}

.about-text-block p {
    color: var(--about-text-color);
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-timeline {
    margin-top: 4rem;
    border-radius: 28px;
    border: 1px solid var(--about-timeline-border);
    background: var(--about-timeline-bg);
    overflow: hidden;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--about-timeline-border);
}

.about-timeline-item:last-child {
    border-bottom: 0;
}

.about-timeline-item strong {
    color: var(--brand-primary);
    font-weight: 800;
}

.about-timeline-item span {
    color: var(--about-text-color);
}

.about-values-section {
    background: var(--about-values-bg);
}

.about-value-card {
    height: 100%;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: all 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: var(--card-shadow-hover);
}

.about-value-card h3 {
    margin-bottom: 1rem;
    color: var(--card-title-color);
    font-size: 1.45rem;
    font-weight: 800;
}

.about-value-card p {
    margin-bottom: 0;
    color: var(--card-text-color);
    line-height: 1.7;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 991px) {
	.site-navbar {
        min-height: 70px;
		background: var(--nav-bg-mobile);
		border-bottom: 1px solid var(--nav-border);
        backdrop-filter: none;
    }

    .site-brand {
        color: var(--nav-brand-color);
    }

    .site-logo {
        max-height: 38px;
    }

    .site-navbar .navbar-collapse {
        background: var(--nav-collapse-bg);
		border-top: 1px solid var(--nav-collapse-border);
		margin-top: 0.75rem;
		padding: 1rem 0;
		border-radius: 12px;
    }

    .site-nav-list {
        gap: 0.35rem;
        align-items: flex-start !important;
    }

    .site-nav-link {
        color: var(--nav-link-color-mobile);
        font-size: 1.05rem;
        padding: 0.7rem 0;
    }
	
	.site-nav-link::after {
        left: 0;
        right: auto;
        bottom: 0.35rem;
        width: 32px;
    }

    .site-nav-button {
        margin-top: 0.5rem;
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .site-navbar-toggler {
        border-color: var(--nav-toggler-border);
    }

    .site-navbar .navbar-toggler-icon {
		filter: var(--nav-toggler-icon-filter);
    }
	
    .hero-section {
		min-height: auto;
		padding: 0;
        background:
			var(--hero-overlay-mobile),
			var(--hero-bg-image) center center / cover no-repeat,
			var(--hero-bg-fallback);
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        padding: 22px 0 26px;
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 0.9rem;
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .hero-title {
        margin-bottom: 1rem;
        font-size: clamp(3.0rem, 12vw, 4.4rem);
        line-height: 1.02;
    }

    .hero-text {
        margin: 0 auto 1.6rem;
        max-width: 360px;
        font-size: 1.22rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        margin-bottom: 0;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
        font-size: 1.08rem;
        padding: 1rem 1.6rem;
    }

    .hero-trust {
        display: none;
    }
	.services-intro {
        margin-bottom: 2.5rem;
    }

    .section-title {
        margin-bottom: 1.25rem;
    }

    .service-card {
        padding: 1.6rem;
        border-radius: 20px;
    }
	
	.benefits-intro {
        margin-bottom: 2.5rem;
    }

    .benefits-grid {
        margin-bottom: 3rem;
    }

    .trust-panel {
        margin-bottom: 3rem;
        padding: 2rem;
        border-radius: 24px;
    }

    .trust-item {
        text-align: center;
    }

    .testimonial-card {
        padding: 1.6rem;
    }
	
	.testimonial-card-content {
        padding: 1.6rem;
    }
	
	.plans-wrapper {
        padding: 2rem;
    }

    .plan-card.highlight {
        transform: none;
    }
	.process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-number {
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }
	
	.faq-intro {
        margin-bottom: 2.5rem;
    }

    .faq-question {
        padding: 1.2rem 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.3rem;
        font-size: 1rem;
    }
	
	.contact-content {
        position: static;
    }

    .contact-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }
	.site-footer {
        padding: 4rem 0 2rem;
    }

    .site-footer-bottom {
        flex-direction: column;
    }
	
	 .about-hero-section {
        padding: 4rem 0;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 1.25rem 1.5rem;
    }
}