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

:root {
    --primary: #1a1a1a;
    --accent: #d4a574;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-800: #262626;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Bricolage Grotesque', -apple-system, serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('stuttgart.jpg') center center / cover no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.65) 50%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.hero-text {
    max-width: 720px;
    margin-top: 150px;
}

.hero-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-badge span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.heading-main {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.heading-sub {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Floating Testimonial Card */
.hero-testimonial-float {
    position: absolute;
    bottom: 8rem;
    right: 5rem;
    z-index: 15;
    animation: fadeInRight 1s ease 1s both;
}

.hero-testimonial-float .testimonial-card {
    width: 380px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-testimonial-float .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.profile-pic {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--accent);
    flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.profile-role {
    font-size: 0.8rem;
    font-weight: 500;
    color: #737373;
    letter-spacing: 0.01em;
}

.testimonial-quote {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #404040;
    font-style: italic;
    font-weight: 400;
    margin: 0;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Testimonial Card (Hidden on Desktop) */
.hero-testimonial-mobile {
    display: none;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    margin: 0 auto;
    animation: scrollMove 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .heading-main {
        font-size: 4rem;
    }

    .heading-sub {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-testimonial-float {
        right: 3rem;
        bottom: 6rem;
    }

    .hero-testimonial-float .testimonial-card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .heading-main {
        font-size: 3rem;
    }

    .heading-sub {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-testimonial-float {
        display: none;
    }

    .hero {
        overflow: hidden;
        height: auto;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-background {
        position: absolute !important;
        transform: none !important;
        height: 100%;
    }

    .hero-testimonial-mobile {
        display: block;
        margin-top: 2rem;
    }

    .testimonial-card-mobile {
        width: 100%;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero-testimonial-mobile .testimonial-profile {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-testimonial-mobile .profile-pic {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        border: 2.5px solid var(--accent);
        flex-shrink: 0;
    }

    .hero-testimonial-mobile .profile-info {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .hero-testimonial-mobile .profile-name {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }

    .hero-testimonial-mobile .profile-role {
        font-size: 0.875rem;
        color: #737373;
        font-weight: 500;
    }

    .hero-testimonial-mobile .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #1a1a1a;
        font-weight: 400;
        margin: 0;
        padding-left: 1rem;
        border-left: 3px solid var(--accent);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .heading-main {
        font-size: 2.5rem;
    }

    .heading-sub {
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .profile-pic {
        width: 46px;
        height: 46px;
    }

    .profile-name {
        font-size: 0.9rem;
    }

    .profile-role {
        font-size: 0.75rem;
    }

    .testimonial-quote {
        font-size: 0.8rem;
        padding-left: 0.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Bank Logos Section */
.logos-section {
    background: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logos-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logos-section {
        padding: 3rem 0;
    }

    .logos-track {
        gap: 4rem;
    }

    .logo-item {
        height: 50px;
    }

    .logo-item img {
        max-width: 150px;
    }

    .logos-container::before,
    .logos-container::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .logos-section {
        padding: 2rem 0;
    }

    .logos-track {
        gap: 3rem;
    }

    .logo-item {
        height: 40px;
    }

    .logo-item img {
        max-width: 120px;
    }

    .logos-container::before,
    .logos-container::after {
        width: 50px;
    }
}

/* Mission & Values Section */
.mission-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.mission-block {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.mission-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    border-radius: 20px;
    color: var(--white);
}

.mission-text {
    flex: 1;
}

.mission-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mission-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #525252;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.value-card:nth-child(1) {
    transition-delay: 0.1s;
}

.value-card:nth-child(2) {
    transition-delay: 0.2s;
}

.value-card:nth-child(3) {
    transition-delay: 0.3s;
}

.value-card:nth-child(4) {
    transition-delay: 0.4s;
}

.value-card:nth-child(5) {
    transition-delay: 0.5s;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
    transform: scale(1.05);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    font-weight: 400;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }

    .mission-block {
        padding: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 5rem 0;
    }

    .mission-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mission-block {
        flex-direction: column;
        padding: 2.5rem;
        margin-bottom: 3rem;
    }

    .mission-icon {
        width: 64px;
        height: 64px;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-description {
        font-size: 1rem;
    }

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

    .value-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-block {
        padding: 2rem;
    }

    .mission-icon {
        width: 56px;
        height: 56px;
    }

    .mission-icon svg {
        width: 36px;
        height: 36px;
    }

    .mission-title {
        font-size: 1.25rem;
    }

    .value-card {
        padding: 1.75rem;
    }

    .value-icon {
        width: 56px;
        height: 56px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Location Section */
.location-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-map {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-map.visible {
    opacity: 1;
    transform: translateX(0);
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

.location-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.location-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #525252;
    margin: 1.5rem 0 2rem;
    font-weight: 400;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.location-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.location-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Animation classes for slide effects */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design for Location */
@media (max-width: 1024px) {
    .location-wrapper {
        gap: 4rem;
    }

    .location-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 5rem 0;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-map {
        order: 2;
    }

    .location-content {
        order: 1;
        text-align: center;
    }

    .location-badge {
        margin: 0 auto;
    }

    /* On mobile, slide from bottom instead of sides */
    .location-map {
        transform: translateY(50px);
    }

    .location-map.visible {
        transform: translateY(0);
    }

    .location-content {
        transform: translateY(50px);
    }

    .location-content.visible {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 4rem 0;
    }

    .location-wrapper {
        gap: 2rem;
    }

    .location-description {
        font-size: 0.95rem;
    }

    .location-badge {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .location-badge svg {
        width: 18px;
        height: 18px;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #525252;
    margin-top: 1.25rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
}

.service-card-highlight {
    grid-column: 1 / -1;
}

.service-card-highlight .service-image {
    height: 400px;
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gray-800);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-features svg {
    flex-shrink: 0;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(4px);
}

/* Staggered animation delays for service cards */
.service-card[data-service="1"] {
    transition-delay: 0.1s;
}

.service-card[data-service="2"] {
    transition-delay: 0.2s;
}

.service-card[data-service="3"] {
    transition-delay: 0.3s;
}

.service-card[data-service="4"] {
    transition-delay: 0.4s;
}

.service-card[data-service="5"] {
    transition-delay: 0.5s;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-section {
        padding: 6rem 0;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-image {
        height: 240px;
    }

    .service-card-highlight .service-image {
        height: 320px;
    }

    .service-content {
        padding: 2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }
}

/* Premium Trust Section - Redesigned */
.premium-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        url('stuttgart.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.06;
    filter: grayscale(100%) blur(3px);
    pointer-events: none;
}

.premium-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.premium-header .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.premium-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 1rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Large Feature Card */
.premium-feature-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-feature-large:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
}

.feature-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-feature-large:hover .feature-image img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
}

.feature-content {
    padding: 2rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    border-radius: 14px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Compact Cards Grid */
.premium-cards-compact {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.compact-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.compact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.compact-card:hover .compact-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
    transform: scale(1.05);
}

.compact-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.compact-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* Benefits Comparison */
.premium-benefits {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    gap: 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(196, 149, 99, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: 24px;
}

.benefit-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.benefit-header svg {
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-header span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.benefit-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.5;
}

.benefit-col li::before {
    content: "→";
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
    margin: 0 1.5rem;
}

/* Premium Section Responsive */
@media (max-width: 1024px) {
    .premium-section {
        padding: 5rem 0;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-feature-large {
        grid-column: 1;
        grid-row: auto;
    }

    .premium-cards-compact {
        grid-column: 1;
        grid-row: auto;
    }

    .premium-benefits {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .premium-section {
        padding: 4rem 0;
    }

    .premium-header {
        margin-bottom: 3rem;
    }

    .premium-subtitle {
        font-size: 1rem;
    }

    .premium-cards-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-image {
        height: 220px;
    }

    .feature-content {
        padding: 1.75rem;
    }

    .feature-content h3 {
        font-size: 1.375rem;
    }

    .compact-card {
        padding: 1.5rem;
    }

    .premium-benefits {
        flex-direction: column;
        padding: 1.75rem;
        gap: 2rem;
    }

    .benefit-divider {
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
        margin: 0;
    }
}

@media (max-width: 480px) {
    .premium-section {
        padding: 3rem 0;
    }

    .premium-header {
        margin-bottom: 2.5rem;
    }

    .premium-grid {
        gap: 1.5rem;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .compact-card {
        padding: 1.25rem;
    }

    .compact-card h4 {
        font-size: 1rem;
    }

    .compact-card p {
        font-size: 0.8rem;
    }

    .premium-benefits {
        padding: 1.5rem;
    }

    .benefit-header span {
        font-size: 1rem;
    }

    .benefit-col li {
        font-size: 0.85rem;
    }
}

/* About Sections */
.about-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #525252;
    font-weight: 400;
}

.about-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #404040;
    font-style: italic;
    font-weight: 400;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent);
    margin: 1rem 0;
}

.about-philosophy h3,
.about-expertise h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.about-philosophy ul,
.about-expertise ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.about-philosophy li,
.about-expertise li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    font-weight: 500;
}

.about-philosophy li::before,
.about-expertise li::before {
    content: "→";
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Reverse layout for alternating sections */
.about-reverse .about-wrapper {
    direction: rtl;
}

.about-reverse .about-content {
    direction: ltr;
}

.about-reverse .about-image {
    direction: ltr;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-wrapper {
        gap: 4rem;
    }

    .about-description,
    .about-quote {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-reverse .about-wrapper {
        direction: ltr;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: left;
    }

    .about-quote {
        padding-left: 1rem;
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-wrapper {
        gap: 2rem;
    }

    .about-description,
    .about-quote {
        font-size: 0.95rem;
    }

    .about-philosophy h3,
    .about-expertise h3 {
        font-size: 1.25rem;
    }

    .about-philosophy li,
    .about-expertise li {
        font-size: 0.95rem;
    }
}

/* Process Section */
.process-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #c49563 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(212, 165, 116, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    transition: all 0.4s ease;
    pointer-events: none;
}

.process-card:hover .process-number {
    opacity: 0.5;
    transform: scale(1.05);
}

.process-title {
    position: relative;
    z-index: 2;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.875rem;
    margin-top: 5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.process-description {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #525252;
    font-weight: 400;
}

/* Staggered animation delays */
.process-card:nth-child(1) {
    transition-delay: 0.05s;
}

.process-card:nth-child(2) {
    transition-delay: 0.1s;
}

.process-card:nth-child(3) {
    transition-delay: 0.15s;
}

.process-card:nth-child(4) {
    transition-delay: 0.2s;
}

.process-card:nth-child(5) {
    transition-delay: 0.25s;
}

.process-card:nth-child(6) {
    transition-delay: 0.3s;
}

/* Process Responsive */
@media (max-width: 1024px) {
    .process-section {
        padding: 6rem 0;
    }

    .process-header {
        margin-bottom: 4rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .process-card {
        padding: 2.5rem 2rem;
    }

    .process-number {
        font-size: 5rem;
    }

    .process-title {
        font-size: 1.25rem;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 5rem 0;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        padding: 2.25rem 1.75rem;
    }

    .process-number {
        font-size: 4.5rem;
        top: 1.5rem;
        left: 1.5rem;
    }

    .process-title {
        font-size: 1.25rem;
        margin-top: 3.5rem;
    }

    .process-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 4rem 0;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-number {
        font-size: 4rem;
        top: 1.25rem;
        left: 1.25rem;
    }

    .process-title {
        font-size: 1.125rem;
        margin-top: 3rem;
    }

    .process-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 5rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card-highlight {
        grid-column: 1;
    }

    .service-image {
        height: 220px;
    }

    .service-card-highlight .service-image {
        height: 280px;
    }

    .service-content {
        padding: 2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .service-card-highlight .service-image {
        height: 240px;
    }

    .service-content {
        padding: 1.75rem;
    }

    .service-title {
        font-size: 1.375rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        top: 1rem;
        left: 1rem;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
    }

    .service-features {
        gap: 0.75rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .service-features svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   COMPREHENSIVE SECTION - New Creative Layout
   ============================================ */

.comprehensive-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.comprehensive-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.comprehensive-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #525252;
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Alternating Benefits Layout */
.alt-benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.alt-benefit-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 3rem;
    background: #ffffff;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.alt-benefit-row:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 40px rgba(212, 165, 116, 0.15);
}

.alt-benefit-reverse {
    grid-template-columns: 80px 1fr 200px;
    border-left: none;
    border-right: 4px solid var(--accent);
}

.alt-benefit-reverse:hover {
    transform: translateX(-12px);
}

.alt-benefit-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}

.alt-benefit-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.alt-benefit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #525252;
}

.alt-benefit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.alt-benefit-visual svg {
    color: var(--accent);
}

.alt-benefit-row:hover .alt-benefit-visual {
    opacity: 0.4;
}

/* Split Info Section */
.split-info-section {
    max-width: 1400px;
    margin: 6rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.split-card {
    padding: 3rem;
    background: #ffffff;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.split-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.requirements-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.requirements-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--accent);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.checklist-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.requirements-note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #737373;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gray-300);
}

.process-card {
    background: #ffffff;
}

.process-card h3 {
    color: var(--primary);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.flow-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.flow-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-top: 0.5rem;
}

/* Financing Visualization */
.financing-visualization {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--gray-200);
}

.financing-visualization h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.visual-breakdown {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.circle-chart-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.circle-chart {
    width: 100%;
    height: 100%;
    transform: scale(1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.chart-segment {
    transition: all 0.3s ease;
}

.circle-chart-wrapper:hover .segment-1 {
    stroke-width: 22;
}

.circle-chart-wrapper:hover .segment-2 {
    stroke-width: 22;
}

.circle-chart-wrapper:hover .segment-3 {
    stroke-width: 22;
}

.chart-center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.chart-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #737373;
    line-height: 1.3;
}

.breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-bar {
    height: 12px;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.detail-item:hover .detail-bar {
    transform: scaleX(1.05);
    transform-origin: left;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-info strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.detail-info span {
    font-size: 1rem;
    font-weight: 600;
    color: #525252;
}

.detail-info small {
    font-size: 0.875rem;
    font-weight: 500;
    color: #737373;
}

.cta-button-primary {
    display: inline-block;
    width: 100%;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.4);
}

/* Service Modules - Masonry Grid */
.services-modules-section {
    max-width: 1400px;
    margin: 4rem auto 0;
}

.modules-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modules-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.modules-header p {
    font-size: 1.125rem;
    color: #525252;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-auto-rows: minmax(180px, auto);
}

.masonry-item {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.masonry-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.item-large {
    grid-row: span 2;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.item-wide {
    background: #ffffff;
    border: 2px solid var(--accent);
}

.item-wide h4,
.item-wide p {
    color: var(--primary);
}

.item-highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, #ffffff 100%);
}

.masonry-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    color: var(--accent);
    transition: all 0.3s ease;
}

.masonry-item:hover .masonry-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
    transform: scale(1.1);
}

.item-wide .masonry-icon {
    background: rgba(212, 165, 116, 0.15);
}

.masonry-item h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.masonry-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: auto;
}

.service-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gray-200);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.service-tag.premium {
    background: linear-gradient(135deg, var(--accent) 0%, #c49563 100%);
    color: var(--white);
}

.digital-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.digital-features span {
    padding: 0.5rem 1rem;
    background: rgba(212, 165, 116, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .alt-benefit-row {
        grid-template-columns: 60px 1fr 160px;
        gap: 2rem;
        padding: 2.5rem;
    }

    .alt-benefit-reverse {
        grid-template-columns: 60px 160px 1fr;
    }

    .alt-benefit-number {
        font-size: 3rem;
    }

    .visual-breakdown {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .circle-chart-wrapper {
        width: 250px;
        height: 250px;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .comprehensive-section {
        padding: 5rem 0;
    }

    .comprehensive-header {
        margin-bottom: 4rem;
    }

    .comprehensive-lead {
        font-size: 1rem;
    }

    .alt-benefits-wrapper {
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .alt-benefit-row,
    .alt-benefit-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        border-left: none;
        border-right: none;
        border-top: 4px solid var(--accent);
    }

    .alt-benefit-row:hover,
    .alt-benefit-reverse:hover {
        transform: translateY(-8px);
    }

    .alt-benefit-number {
        font-size: 2.5rem;
    }

    .alt-benefit-content h3 {
        font-size: 1.5rem;
    }

    .alt-benefit-visual {
        display: none;
    }

    .split-info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 4rem auto;
    }

    .split-card {
        padding: 2rem;
    }

    .split-card h3 {
        font-size: 1.5rem;
    }

    .financing-visualization {
        padding: 2.5rem;
        margin: 4rem auto 0;
    }

    .financing-visualization h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .circle-chart-wrapper {
        width: 200px;
        height: 200px;
    }

    .chart-amount {
        font-size: 2rem;
    }

    .breakdown-details {
        gap: 1.5rem;
    }

    .detail-info strong {
        font-size: 1.25rem;
    }

    .cta-button-primary {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .services-modules-section {
        margin: 5rem auto 0;
    }

    .modules-header h3 {
        font-size: 2rem;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .item-large,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .masonry-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .comprehensive-section {
        padding: 4rem 0;
    }

    .comprehensive-header {
        margin-bottom: 3rem;
    }

    .comprehensive-lead {
        font-size: 0.95rem;
    }

    .alt-benefits-wrapper {
        gap: 2rem;
    }

    .alt-benefit-row,
    .alt-benefit-reverse {
        padding: 1.5rem;
    }

    .alt-benefit-number {
        font-size: 2rem;
    }

    .alt-benefit-content h3 {
        font-size: 1.25rem;
    }

    .alt-benefit-content p {
        font-size: 0.95rem;
    }

    .split-card {
        padding: 1.5rem;
    }

    .split-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .checklist-item {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    .flow-step {
        gap: 1rem;
    }

    .flow-num {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .flow-step p {
        font-size: 0.9rem;
    }

    .financing-visualization {
        padding: 2rem;
    }

    .financing-visualization h3 {
        font-size: 1.25rem;
    }

    .visual-breakdown {
        gap: 2rem;
    }

    .breakdown-details {
        gap: 1.25rem;
    }

    .cta-button-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-lead {
    font-size: 1.125rem;
    color: #525252;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* Review Platforms */
.review-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.platform-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.platform-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.platform-rating .stars {
    color: #d4a574;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.platform-rating span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 70px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-slider .testimonial-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 3rem;
    min-height: 300px;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials-slider .testimonial-card.active {
    display: flex;
    animation: fadeInSlide 0.5s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-rating {
    color: #d4a574;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.author-info span {
    font-size: 0.875rem;
    color: #737373;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:hover svg {
    stroke: #ffffff;
}

.slider-arrow svg {
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: #d4a574;
}

/* References & Success Stories Section */
.references-section {
    padding: 8rem 0;
    background: #fafafa;
}

.references-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.references-lead {
    font-size: 1.125rem;
    color: #737373;
    line-height: 1.8;
    margin-top: 1rem;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.reference-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reference-card:hover .reference-image img {
    transform: scale(1.08);
}

.reference-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reference-badge.premium {
    background: var(--accent);
}

.reference-content {
    padding: 2.5rem;
}

.reference-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.reference-description {
    font-size: 1rem;
    color: #737373;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.reference-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 500;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.stat-icon svg {
    stroke: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.faq-lead {
    font-size: 1.125rem;
    color: #737373;
    line-height: 1.8;
    margin-top: 1rem;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #737373;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-lead {
    font-size: 1.125rem;
    color: #737373;
    line-height: 1.8;
    margin: 1rem 0 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--accent);
}

.contact-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 1rem;
    color: #737373;
    line-height: 1.6;
    margin: 0;
}

.contact-hours {
    padding: 2rem;
    background: rgba(212, 165, 116, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.contact-hours h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-hours p {
    font-size: 0.95rem;
    color: #737373;
    line-height: 1.8;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: #737373;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.form-note {
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-ceo {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    font-style: italic;
    margin-top: 1.5rem !important;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-accept:hover {
    background: #c49564;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }

    .review-platforms {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .platform-logo img {
        height: 40px;
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .references-section {
        padding: 5rem 0;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reference-image {
        height: 250px;
    }

    .reference-content {
        padding: 2rem;
    }

    .reference-content h3 {
        font-size: 1.25rem;
    }

    .faq-section {
        padding: 5rem 0;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 5rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-copyright {
        text-align: left;
    }

    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .review-platforms {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonials-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonials-lead {
        font-size: 1rem;
    }

    .services-modules-section {
        margin: 4rem auto 0;
    }
}

    .modules-header h3 {
        font-size: 1.75rem;
    }

    .modules-header p {
        font-size: 1rem;
    }

    .masonry-item {
        padding: 1.75rem;
    }

    .masonry-icon {
        width: 56px;
        height: 56px;
    }

    .masonry-icon svg {
        width: 32px;
        height: 32px;
    }

    .masonry-item h4 {
        font-size: 1.25rem;
    }

    .masonry-item p {
        font-size: 0.9rem;
    }

    .digital-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }
}
