/**
 * AUX IMMO Custom Styles
 * AUX IMMO Theme Styles
 * Font: Outfit
 */

/* ═══════════════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════════════ */
:root {
    --aux-green: #2F5C3B;
    --aux-green-hover: #1E3E26;
    --aux-green-light: rgba(47, 92, 59, 0.08);
    --aux-green-glow: rgba(47, 92, 59, 0.3);
    --aux-dark: #1A1A1A;
    --aux-white: #FFFFFF;

    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 8px 24px var(--aux-green-glow);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--aux-white);
    color: var(--aux-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--aux-dark);
    margin: 0;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { color: var(--gray-500); margin: 0; }

.text-green { color: var(--aux-green); }

/* ═══════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */
.fp-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.fp-section {
    padding: clamp(5rem, 12vh, 10rem) 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out-quart);
}

.fp-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.fp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fp-nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--aux-dark);
}

.fp-nav-logo span { color: var(--aux-green); }

.fp-nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.fp-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

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

.fp-nav-link:hover { color: var(--aux-dark); }
.fp-nav-link:hover::after { width: 100%; }

.fp-nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--aux-dark);
    color: var(--aux-white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.fp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.fp-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--aux-dark);
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.fp-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease-out-expo);
}

.fp-btn:hover svg {
    transform: translateX(4px);
}

.fp-btn-primary {
    background: var(--aux-green);
    color: var(--aux-white);
}

.fp-btn-primary:hover {
    background: var(--aux-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--aux-green-glow);
}

.fp-btn-dark {
    background: var(--aux-dark);
    color: var(--aux-white);
}

.fp-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.fp-btn-outline {
    background: transparent;
    color: var(--aux-dark);
    border: 1.5px solid var(--gray-300);
}

.fp-btn-outline:hover {
    border-color: var(--aux-dark);
    background: var(--gray-50);
}

.fp-btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.fp-btn-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--aux-green);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.fp-btn-link:hover {
    gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════════════════════════════ */
.fp-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--aux-green);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.fp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--aux-green-light) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.fp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--aux-green-light);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aux-green);
    margin-bottom: 2rem;
}

.fp-hero-badge svg {
    width: 16px;
    height: 16px;
}

.fp-hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.fp-hero-title .line {
    display: block;
    overflow: hidden;
}

.fp-hero-title .line span {
    display: block;
    transform: translateY(100%);
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.fp-hero-title .line:nth-child(2) span { animation-delay: 0.1s; }
.fp-hero-title .line:nth-child(3) span { animation-delay: 0.2s; }

@keyframes slideUp {
    to { transform: translateY(0); }
}

.fp-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.fp-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.fp-hero-trust {
    display: flex;
    gap: 2rem;
}

.fp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.fp-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--aux-green);
}

.fp-hero-visual {
    position: relative;
    height: 600px;
}

.fp-hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.fp-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-hero-image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 4px solid var(--aux-white);
}

.fp-hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-hero-float-card {
    position: absolute;
    top: 50%;
    left: -40px;
    background: var(--aux-white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fp-hero-float-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aux-green);
    line-height: 1;
}

.fp-hero-float-card .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROOF SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-proof {
    padding: 3rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.fp-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
    flex-wrap: wrap;
}

.fp-proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fp-proof-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-proof-content {
    display: flex;
    flex-direction: column;
}

.fp-proof-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.fp-proof-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBC05;
}

.fp-proof-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aux-dark);
    line-height: 1;
}

.fp-proof-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aux-dark);
}

.fp-proof-sublabel {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.fp-proof-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-300);
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-services-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.fp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fp-service-card {
    position: relative;
    background: var(--aux-white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.fp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--aux-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.fp-service-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

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

.fp-service-icon {
    width: 56px;
    height: 56px;
    background: var(--aux-green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.fp-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--aux-green);
}

.fp-service-card:hover .fp-service-icon {
    background: var(--aux-green);
    transform: scale(1.1) rotate(-5deg);
}

.fp-service-card:hover .fp-service-icon svg {
    color: var(--aux-white);
}

.fp-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.fp-service-card > p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fp-service-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.fp-service-features li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.fp-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--aux-green);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-process {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.fp-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse at center, var(--aux-green-light) 0%, transparent 70%);
    pointer-events: none;
}

.fp-process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.fp-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.fp-process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--aux-green), var(--gray-300));
    transform: translateX(-50%);
}

.fp-process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.fp-process-step:nth-child(even) .fp-step-content {
    grid-column: 3;
    text-align: left;
}

.fp-process-step:nth-child(even) .fp-step-empty {
    grid-column: 1;
}

.fp-process-step:nth-child(odd) .fp-step-content {
    text-align: right;
}

.fp-step-number {
    width: 60px;
    height: 60px;
    background: var(--aux-white);
    border: 3px solid var(--aux-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aux-green);
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-out-expo);
}

.fp-process-step:hover .fp-step-number {
    background: var(--aux-green);
    color: var(--aux-white);
    transform: scale(1.15);
}

.fp-step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.fp-step-content p {
    font-size: 0.95rem;
    max-width: 300px;
}

.fp-process-step:nth-child(odd) .fp-step-content p {
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.fp-why-content h2 {
    margin-bottom: 1.5rem;
}

.fp-why-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.fp-why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fp-why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.fp-why-feature:hover {
    background: var(--gray-50);
    transform: translateX(8px);
}

.fp-feature-check {
    width: 24px;
    height: 24px;
    background: var(--aux-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-feature-check svg {
    width: 14px;
    height: 14px;
    color: var(--aux-green);
}

.fp-feature-text strong {
    display: block;
    font-weight: 600;
    color: var(--aux-dark);
    margin-bottom: 0.25rem;
}

.fp-feature-text span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.fp-why-visual {
    position: relative;
}

.fp-why-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.fp-why-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out-expo);
}

.fp-why-image:hover img {
    transform: scale(1.03);
}

.fp-why-stat {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--aux-dark);
    color: var(--aux-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.fp-why-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aux-green);
    line-height: 1;
}

.fp-why-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-testimonials {
    background: var(--gray-900);
    color: var(--aux-white);
    position: relative;
    overflow: hidden;
}

.fp-testimonials::before {
    content: '"';
    position: absolute;
    top: -100px;
    left: 5%;
    font-size: 40rem;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

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

.fp-testimonials-header h2 {
    color: var(--aux-white);
}

.fp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fp-testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
}

.fp-testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: rgba(101, 154, 38, 0.3);
}

.fp-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.fp-testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBC05;
}

.fp-testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin: 0 0 1.5rem 0;
    font-style: normal;
}

.fp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fp-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--aux-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--aux-white);
}

.fp-author-info strong {
    display: block;
    color: var(--aux-white);
    font-weight: 500;
}

.fp-author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════
   PROPERTIES SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-properties-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.fp-properties-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.fp-property-card {
    background: var(--aux-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s var(--ease-out-expo);
}

.fp-property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.fp-property-card:first-child {
    grid-row: span 2;
}

.fp-property-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.fp-property-card:first-child .fp-property-image {
    aspect-ratio: 4/5;
}

.fp-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.fp-property-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--aux-green);
    color: var(--aux-white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

.fp-property-tag.rent {
    background: var(--aux-dark);
}

.fp-property-content {
    padding: 1.5rem;
}

.fp-property-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.fp-property-location svg {
    width: 14px;
    height: 14px;
}

.fp-property-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.fp-property-features {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.fp-property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.fp-property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aux-green);
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-cta-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--aux-white) 100%);
}

.fp-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fp-cta-card {
    background: var(--aux-white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.fp-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aux-green);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.fp-cta-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.fp-cta-card:hover::after {
    transform: scaleX(1);
}

.fp-cta-card.featured {
    background: var(--aux-dark);
    border-color: var(--aux-dark);
}

.fp-cta-card.featured h3,
.fp-cta-card.featured p {
    color: var(--aux-white);
}

.fp-cta-card.featured p {
    opacity: 0.7;
}

.fp-cta-icon {
    width: 72px;
    height: 72px;
    background: var(--aux-green-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.fp-cta-icon svg {
    width: 32px;
    height: 32px;
    color: var(--aux-green);
}

.fp-cta-card:hover .fp-cta-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--aux-green);
}

.fp-cta-card:hover .fp-cta-icon svg {
    color: var(--aux-white);
}

.fp-cta-card.featured .fp-cta-icon {
    background: rgba(101, 154, 38, 0.2);
}

.fp-cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.fp-cta-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-team {
    background: var(--gray-50);
}

.fp-team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.fp-team-card {
    background: var(--aux-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease-out-expo);
}

.fp-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.fp-team-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fp-team-image-placeholder {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-300);
}

.fp-team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fp-team-card:hover .fp-team-image::after {
    opacity: 1;
}

.fp-team-content {
    padding: 1.75rem;
}

.fp-team-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.fp-team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--aux-green);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.fp-team-content > p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fp-team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fp-team-badge {
    padding: 0.35rem 0.75rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

.fp-brand-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--aux-white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.fp-brand-story h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fp-brand-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.fp-brand-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--aux-green);
}

.fp-brand-location svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ + CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.fp-faq-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
}

.fp-faq-header {
    margin-bottom: 2rem;
}

.fp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fp-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fp-faq-item:hover {
    border-color: var(--gray-300);
}

.fp-faq-item[open] {
    background: var(--gray-50);
}

.fp-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--aux-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.fp-faq-item summary::-webkit-details-marker { display: none; }

.fp-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.fp-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.fp-faq-item summary:hover {
    background: var(--gray-50);
}

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

.fp-faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.fp-contact-card {
    background: var(--aux-dark);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--aux-white);
    position: sticky;
    top: 120px;
}

.fp-contact-card h2 {
    color: var(--aux-white);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.fp-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.fp-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--aux-green);
}

.fp-contact-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.fp-contact-text span,
.fp-contact-text a {
    color: var(--aux-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.fp-contact-text a:hover {
    color: var(--aux-green);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.fp-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.fp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.fp-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.fp-footer h4 {
    color: var(--aux-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.fp-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-footer-links li {
    margin-bottom: 0.75rem;
}

.fp-footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.fp-footer-links a:hover {
    color: var(--aux-white);
}

.fp-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.fp-footer-legal {
    display: flex;
    gap: 2rem;
}

.fp-footer-legal a:hover {
    color: var(--aux-white);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .fp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-properties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fp-property-card:first-child {
        grid-row: auto;
    }
}

@media (max-width: 1024px) {
    .fp-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fp-hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .fp-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fp-why-visual {
        order: -1;
    }

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

    .fp-contact-card {
        position: static;
    }

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

@media (max-width: 768px) {
    .fp-nav-links { display: none; }
    .fp-nav-toggle { display: flex; }

    .fp-hero-visual {
        height: 350px;
    }

    .fp-hero-float-card {
        left: 10px;
        bottom: 10px;
        top: auto;
    }

    .fp-proof-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .fp-proof-divider {
        width: 60px;
        height: 1px;
    }

    .fp-services-grid,
    .fp-testimonials-grid,
    .fp-cta-grid,
    .fp-team-grid,
    .fp-properties-grid {
        grid-template-columns: 1fr;
    }

    .fp-process-step {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .fp-process-line { display: none; }
    .fp-step-empty { display: none; }

    .fp-process-step:nth-child(even) .fp-step-content,
    .fp-process-step:nth-child(odd) .fp-step-content {
        grid-column: 2;
        text-align: left;
    }

    .fp-process-step:nth-child(odd) .fp-step-content p {
        margin-left: 0;
    }

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

    .fp-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS & POLISH
   ═══════════════════════════════════════════════════════════════════════ */

/* Video Play Button */
.video-container {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--aux-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 10;
    box-shadow: var(--shadow-green);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px var(--aux-green-glow);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Button Hover Effects */
.btn-primary,
.cta-btn,
[class*="btn-primary"],
button[type="submit"] {
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary:hover,
.cta-btn:hover,
[class*="btn-primary"]:hover,
button[type="submit"]:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px var(--aux-green-glow);
    transform: translateY(-2px);
}

.btn-primary:active,
.cta-btn:active {
    transform: translateY(0);
}

/* FAQ Smooth Accordion */
.faq-item,
[class*="accordion"] {
    overflow: hidden;
}

.faq-content,
.accordion-content,
[class*="faq"] [class*="content"] {
    transition: max-height 0.4s var(--ease-out-expo),
                opacity 0.3s ease,
                padding 0.3s ease;
}

.faq-icon,
.accordion-icon {
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-item.active .faq-icon,
.accordion-item.active .accordion-icon,
[class*="faq"][class*="active"] [class*="icon"] {
    transform: rotate(180deg);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

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

/* Staggered animations for grids */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Link Hover Effects */
a:not(.btn-primary):not(.cta-btn) {
    transition: color 0.2s ease;
}

/* Card Hover Effects */
.service-card,
.team-card,
.property-card,
[class*="card"] {
    transition: transform 0.3s var(--ease-out-expo),
                box-shadow 0.3s var(--ease-out-expo);
}

.service-card:hover,
.team-card:hover,
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Vermietungs-Referenzen */
.objekt-status.vermietet {
    background: var(--aux-green);
    color: white;
}

.vermittlungszeit {
    display: block;
    font-size: 0.85rem;
    color: var(--aux-green);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   OBJEKT-KARTEN (OnOffice Integration)
   ═══════════════════════════════════════════════════════════════════════ */

.objekt-karte {
    background: var(--aux-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-out-expo),
                box-shadow 0.3s var(--ease-out-expo);
}

.objekt-karte:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.objekt-karte__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Bild */
.objekt-karte__image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.objekt-karte__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.objekt-karte:hover .objekt-karte__image {
    transform: scale(1.05);
}

/* Status Badge */
.objekt-karte__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--aux-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.objekt-karte__badge--sold {
    background: var(--gray-800);
}

.objekt-karte__badge--reserved {
    background: #B8860B;
}

/* Content */
.objekt-karte__content {
    padding: 1.25rem;
}

.objekt-karte__location {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.objekt-karte__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--aux-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.objekt-karte__details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.objekt-karte__detail {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.objekt-karte__detail .icon {
    color: var(--aux-green);
}

.objekt-karte__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aux-green);
}

/* Slider Variante */
.objekt-karte--slider {
    min-width: 320px;
    flex-shrink: 0;
}

/* Compact Variante (Referenzen) */
.objekt-karte--compact {
    box-shadow: var(--shadow-sm);
}

.objekt-karte--compact .objekt-karte__image-wrapper {
    aspect-ratio: 16/10;
}

.objekt-karte--compact .objekt-karte__content {
    padding: 1rem;
}

.objekt-karte--compact .objekt-karte__title {
    font-size: 1rem;
}

.objekt-karte--compact .objekt-karte__price {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   OBJEKT-SLIDER
   ═══════════════════════════════════════════════════════════════════════ */

.objekt-slider {
    position: relative;
}

.objekt-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.objekt-slider__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.objekt-slider__nav {
    display: flex;
    gap: 0.5rem;
}

.objekt-slider__btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.objekt-slider__btn:hover {
    border-color: var(--aux-green);
    color: var(--aux-green);
}

.objekt-slider__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.objekt-slider__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
}

.objekt-slider__track::-webkit-scrollbar {
    display: none;
}

/* Fallback wenn keine Objekte */
.objekte-slider__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500, #6b7280);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════
   REFERENZ-GRID
   ═══════════════════════════════════════════════════════════════════════ */

.referenz-grid {
    margin-top: 3rem;
}

.referenz-grid__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.referenz-grid__items {
    display: grid;
    gap: 1.5rem;
}

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

.referenz-grid--cols-3 .referenz-grid__items {
    grid-template-columns: repeat(3, 1fr);
}

.referenz-grid--cols-4 .referenz-grid__items {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .referenz-grid--cols-4 .referenz-grid__items,
    .referenz-grid--cols-3 .referenz-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .referenz-grid--cols-4 .referenz-grid__items,
    .referenz-grid--cols-3 .referenz-grid__items,
    .referenz-grid--cols-2 .referenz-grid__items {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   REFERENZEN SECTION (OnOffice Integration)
   ═══════════════════════════════════════════════════════════════════════ */

.referenzen-section {
    background: var(--gray-50, #f9fafb);
}

.referenzen-section .referenz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .referenzen-section .referenz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .referenzen-section .referenz-grid {
        grid-template-columns: 1fr;
    }
}

/* Referenz-Karte */
.referenz-karte {
    background: var(--white, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.referenz-karte:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.referenz-bild {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.referenz-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.referenz-karte:hover .referenz-bild img {
    filter: grayscale(0);
}

.referenz-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.375rem 0.75rem;
    background: var(--green-600, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.referenz-content {
    padding: 1.25rem;
}

.referenz-ort {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500, #6b7280);
    margin-bottom: 0.25rem;
}

.referenz-titel {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900, #111827);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.referenz-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-600, #4b5563);
}

.referenz-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
