:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    
    --accent-500: #ff4d00;
    --accent-600: #e64500;
    
    --surface-50: #f8fafc;
    --surface-100: #f1f5f9;
    --surface-white: #ffffff;
    
    --text-main: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;

    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.9);
    --radius-xl: 16px;
    --radius-lg: 12px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--surface-50);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; transition: all 0.3s ease; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { 
    font-weight: 700; 
    color: var(--primary-900); 
    line-height: 1.2; 
    margin-bottom: 1rem; 
}
h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.75rem; }
p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; }

/* --- UTILITIES --- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.5rem; 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    border: none;
    text-decoration: none;
}
.btn-primary { 
    background: var(--accent-500); 
    color: white !important; 
    border: none; 
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3); 
}
.btn-primary:hover { 
    background: var(--accent-600); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4); 
}
.btn-outline { 
    border: 2px solid white; 
    color: #0f172a !important; 
    background: transparent; 
}

.btn-outline:hover { 
    background: white; 
    color: var(--primary-900) !important; 
}

.btn-outline2 { 
    border: 2px solid white; 
    color: #ffffff !important; 
    background: transparent; 
}

.btn-outline2:hover { 
    background: white; 
    color: var(--primary-900) !important; 
}

.btn-whatsapp-corporate {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #f57c00;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(245, 124, 0, 0.25);
}

.btn-whatsapp-corporate i {
    font-size: 1.2rem;
}

.btn-whatsapp-corporate:hover {
    background-color: #e56f00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(245, 124, 0, 0.35);
}

.btn-whatsapp-corporate:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(245, 124, 0, 0.25);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* --- HEADER --- */
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    transition: all 0.3s ease; 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}
.header.scrolled { 
    padding: 0.5rem 0; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 90px; 
}

.logo img { height: 60px; width: auto; }

.navbar { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
}
.nav-link { 
    font-weight: 600; 
    color: var(--primary-800) !important; 
    position: relative; 
    font-size: 0.95rem; 
}
.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--accent-500); 
    transition: width 0.3s ease; 
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--accent-500) !important; }

.header-cta { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.phone-box { text-align: right; }
.phone-box span { 
    display: block; 
    font-size: 0.75rem; 
    color: var(--text-light); 
}
.phone-box strong { 
    font-size: 1.1rem; 
    color: var(--primary-900); 
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: white; 
    min-width: 250px; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-hover); 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: all 0.3s ease; 
    padding: 1rem 0; 
    z-index: 1001;
}
.dropdown:hover .dropdown-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.dropdown-menu a { 
    display: block; 
    padding: 0.75rem 1.5rem; 
    color: var(--text-main) !important; 
    font-size: 0.9rem; 
    border-bottom: 1px solid var(--surface-100); 
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.dropdown-menu a:hover { 
    background: var(--surface-50); 
    color: var(--accent-500) !important; 
    padding-left: 1.8rem; 
}

/* Mobile Menu Toggle */
.mobile-toggle { 
    display: none; 
    font-size: 1.5rem; 
    color: var(--primary-900); 
    cursor: pointer; 
    background: none; 
    border: none; 
}

/* --- HERO SLIDER (DİNAMİK YÜKSEKLIK - BOŞLUKSUZ) --- */
.hero-slider { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    margin-top: 90px; /* Header yüksekliği kadar */
    min-height: auto; /* Sabit min-height kaldırıldı */
}

.slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background-size: cover; 
    background-position: center; 
    opacity: 0; 
    transition: opacity 1s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0; /* Ekstra padding kaldırıldı */
}

.slide.active { 
    opacity: 1; 
    z-index: 1; 
    position: relative; /* İlk slide relative olmalı */
}

.slide-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: var(--gradient-hero); 
}

.slide-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: 900px; 
    padding: 4rem 2rem; /* İçeriğe göre padding */
    color: white !important; 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease 0.3s; 
    width: 100%;
}

.slide-content h1,
.slide-content p {
    color: white !important;
}

.slide.active .slide-content { 
    opacity: 1; 
    transform: translateY(0); 
}

.hero-badges { 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    margin-top: 3rem; 
    flex-wrap: wrap; 
}

.hero-badge { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: rgba(255,255,255,0.1); 
    padding: 0.75rem 1.5rem; 
    border-radius: 50px; 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: white !important;
}

/* --- ABOUT SECTION (Kurumsal Alan) --- */
.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-content h2 {
    margin-bottom: 1.5rem;
}
.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.about-feature i {
    color: var(--accent-500);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}
.about-feature div h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-900);
}
.about-feature div p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* --- BANNER SECTION --- */
.banner-section {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
}
.banner-content {
    max-width: 600px;
    margin: 0 auto;
}
.banner-content h3 {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.banner-content p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 2rem;
}
.banner-phones {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.banner-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.banner-phone i {
    color: var(--accent-500);
    font-size: 1.5rem;
}
.banner-phone strong {
    color: white;
    font-size: 1.2rem;
}

/* --- MAIN LAYOUT --- */
.page-layout { 
    display: grid; 
    grid-template-columns: 1fr 350px; 
    gap: 3rem; 
    margin-top: 3rem; 
    align-items: start; 
}

/* --- CONTENT AREA --- */
.main-content { 
    background: white; 
    padding: 3rem; 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-card); 
}
.content-body { 
    font-size: 1.05rem; 
    line-height: 1.8; 
    color: var(--text-main); 
}
.content-body h2 { 
    font-size: 2rem; 
    margin-top: 2rem; 
    color: var(--primary-900) !important; 
}
.content-body h3 {
    font-size: 1.5rem;
    color: var(--primary-900) !important;
    margin-top: 1.5rem;
}
.content-body ul { 
    list-style: disc; 
    padding-left: 1.5rem; 
    margin-bottom: 1.5rem; 
}
.content-body ul li {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

/* In-Article Injected Images */
.in-article-image { 
    margin: 2.5rem 0; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-card); 
    position: relative; 
}
.in-article-image img { 
    width: 100%; 
    transition: transform 0.5s ease; 
}
.in-article-image:hover img { 
    transform: scale(1.03); 
}
.in-article-image::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 5px; 
    background: var(--accent-500); 
}

/* --- SIDEBAR --- */
.sidebar { 
    position: sticky; 
    top: 110px; 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
}

.widget { 
    background: white; 
    border-radius: var(--radius-xl); 
    padding: 1.5rem; 
    box-shadow: var(--shadow-card); 
    border: 1px solid var(--surface-100); 
}
.widget-title { 
    font-size: 1.2rem; 
    margin-bottom: 1.5rem; 
    padding-bottom: 1rem; 
    border-bottom: 2px solid var(--surface-100); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--primary-900) !important;
}
.widget-title i { 
    color: var(--accent-500); 
}

/* Search */
.search-box input { 
    width: 100%; 
    padding: 1rem; 
    border: 2px solid var(--surface-100); 
    border-radius: var(--radius-lg); 
    transition: all 0.3s; 
    font-family: inherit; 
    font-size: 0.95rem;
}
.search-box input:focus { 
    border-color: var(--accent-500); 
    outline: none; 
}

/* City List */
.city-list { 
    max-height: 500px; 
    overflow-y: auto; 
    padding-right: 5px; 
}
.city-item { 
    display: flex; 
    align-items: center; 
    padding: 0.8rem; 
    border-radius: 8px; 
    margin-bottom: 5px; 
    background: var(--surface-50); 
    transition: all 0.2s; 
    font-weight: 500; 
    font-size: 0.9rem; 
    color: var(--text-main) !important;
}
.city-item:hover, .city-item.active { 
    background: var(--primary-900); 
    color: white !important; 
    transform: translateX(5px); 
}
.city-item i { 
    margin-right: 10px; 
    font-size: 0.8rem; 
    opacity: 0.7; 
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: var(--surface-100);
    border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-500);
    border-radius: 10px;
}

/* --- SERVICES GRID --- */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem; 
}
.service-card { 
    background: white; 
    border-radius: var(--radius-xl); 
    padding: 2.5rem; 
    box-shadow: var(--shadow-card); 
    transition: all 0.4s ease; 
    border-bottom: 4px solid transparent; 
    position: relative; 
    overflow: hidden; 
}
.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-hover); 
    border-bottom-color: var(--accent-500); 
}
.service-icon { 
    width: 70px; 
    height: 70px; 
    background: var(--surface-50); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.8rem; 
    color: var(--accent-500); 
    margin-bottom: 1.5rem; 
    transition: all 0.4s; 
}
.service-card:hover .service-icon { 
    background: var(--accent-500); 
    color: white; 
}
.service-card h3 {
    color: var(--primary-900) !important;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-light);
}
.service-link { 
    margin-top: 1.5rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--accent-500) !important; 
    font-weight: 700; 
}

/* --- REVIEWS SECTION --- */
.reviews-section { 
    background: var(--primary-900); 
    color: white; 
    position: relative; 
    overflow: hidden; 
}
.reviews-section h2 {
    color: white !important;
}
.review-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.review-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.review-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    position: relative; 
    z-index: 2; 
    min-width: 100%;
}
.review-card { 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px); 
    padding: 2rem; 
    border-radius: var(--radius-lg); 
    border: 1px solid rgba(255,255,255,0.1); 
}
.review-card p {
    color: rgba(255,255,255,0.9) !important;
}
.stars { 
    color: #fbbf24; 
    margin-bottom: 1rem; 
}
.author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-top: 1.5rem; 
}
.author-avatar { 
    width: 40px; 
    height: 40px; 
    background: var(--accent-500); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    color: white;
}
.author strong {
    color: white;
}
.author span {
    color: rgba(255,255,255,0.7);
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.slider-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.slider-btn:hover {
    background: var(--accent-500);
    border-color: var(--accent-500);
}

/* --- CTA CARD --- */
.cta-card {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}
.cta-card h2 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-card p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    min-width: 200px;
}

/* --- FOOTER --- */
.footer { 
    background: var(--primary-800); 
    color: var(--text-light); 
    padding-top: 5rem; 
    margin-top: 5rem; 
    border-top: 5px solid var(--accent-500); 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 3rem; 
    padding-bottom: 4rem; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}
.footer h4 { 
    color: white !important; 
    font-size: 1.2rem; 
    margin-bottom: 1.5rem; 
}
.footer a { 
    color: var(--text-light) !important; 
    display: block; 
    margin-bottom: 0.8rem; 
}
.footer a:hover { 
    color: var(--accent-500) !important; 
    padding-left: 5px; 
}
.footer-bottom { 
    padding: 2rem 0; 
    text-align: center; 
    font-size: 0.9rem; 
    color: var(--text-light);
}

/* Floating Actions & Mobile Bar */
a.btn-whatsapp-corporate {
    background: #f57c00 !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
}

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.floating-btn i {
    font-size: 18px;
}

.floating-btn:hover {
    transform: translateX(-6px);
}

.phone-btn {
    background: var(--primary-900);
}

.whatsapp-btn {
    background: #25d366;
}

.mobile-sticky-bar {
    display: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-slider {
        margin-top: 0; /* Mobile'da header relative olduğu için */
    }
    
    .page-layout { 
        grid-template-columns: 1fr; 
    }
    .sidebar { 
        position: static;
        order: 2; 
    }
    h1 { font-size: 2.5rem; }
    
    .header { 
        position: relative; 
    }
    .nav-container { 
        height: auto; 
        padding: 1rem 0; 
    }
    .navbar, .header-cta { 
        display: none; 
    }
    .mobile-toggle { 
        display: block; 
        margin-left: auto; 
    }
    
    .navbar.mobile-active { 
        display: flex; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: white; 
        padding: 2rem; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
        z-index: 999; 
        align-items: flex-start; 
    }
    .navbar.mobile-active .nav-link { 
        width: 100%; 
        padding: 10px 0; 
        border-bottom: 1px solid var(--surface-100); 
    }
    .dropdown-menu { 
        position: static; 
        box-shadow: none; 
        opacity: 1; 
        visibility: visible; 
        transform: none; 
        display: none; 
        padding-left: 1rem; 
    }
    .dropdown.active .dropdown-menu { 
        display: block; 
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container { 
        padding: 0 1.5rem; 
    }
    .section-padding { 
        padding: 3rem 0; 
    }
    h1 { 
        font-size: 2rem; 
    }
    h2 { 
        font-size: 1.75rem; 
    }
    
    .slide-content {
        padding: 3rem 1.5rem; /* Mobile'da daha kompakt */
    }
    
    .review-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    .hero-badges {
        gap: 1rem;
    }
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    .banner-phones {
        flex-direction: column;
        gap: 1rem;
    }
    .cta-card h2 {
        font-size: 1.75rem;
    }
    .cta-card p {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .floating-actions {
        display: none;
    }

    .mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #ffffff;
        border-top: 1px solid var(--surface-100);
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
        z-index: 9999;
    }

    .sticky-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 0;
        font-size: 13px;
        font-weight: 600;
        gap: 4px;
        color: var(--primary-900);
    }

    .sticky-btn i {
        font-size: 20px;
    }

    .sticky-btn.phone {
        background: var(--primary-900);
        color: #fff;
    }

    .sticky-btn.whatsapp {
        background: #25d366;
        color: #fff;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    .slide-content {
        padding: 2rem 1rem; /* Küçük ekranlarda daha da kompakt */
    }
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}