/* =============================================
   NEVER WALK ALONE – Modern Website
   ============================================= */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: #1A2B3C;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- VARIABLES ---- */
:root {
    --teal:        #2ABFBF;
    --teal-dark:   #1A9E9E;
    --teal-deep:   #0D8A8A;
    --teal-light:  #E0F7F7;
    --teal-xlight: #F0FAFA;
    --dark:        #1A2B3C;
    --dark2:       #0F1A24;
    --gray:        #6B7280;
    --gray-light:  #F3F4F6;
    --white:       #FFFFFF;
    --shadow-sm:   0 2px 12px rgba(42,191,191,0.12);
    --shadow-md:   0 8px 32px rgba(42,191,191,0.18);
    --shadow-lg:   0 20px 60px rgba(42,191,191,0.22);
}

/* ---- LOADER ---- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--teal-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
    font-size: 36px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    animation: logoPulse 1s ease infinite alternate;
}
@keyframes logoPulse {
    from { opacity: 0.6; transform: scale(0.96); }
    to   { opacity: 1;   transform: scale(1); }
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}
.loader-progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loadProgress 1.4s ease forwards;
}
@keyframes loadProgress {
    from { width: 0; }
    to   { width: 100%; }
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
.navbar.scrolled .logo-img {
    filter: none;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-size: 13px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.06em;
    transition: color 0.3s;
}
.logo-sub {
    font-size: 9px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.navbar.scrolled .logo-main { color: var(--dark); }
.navbar.scrolled .logo-sub  { color: var(--gray); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-close { display: none; }
.nav-item {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.22s;
    white-space: nowrap;
}
.nav-item:hover {
    background: rgba(255,255,255,0.14);
    color: white;
}
.navbar.scrolled .nav-item { color: var(--dark); }
.navbar.scrolled .nav-item:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}
.nav-cta {
    background: white;
    color: var(--teal) !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(255,255,255,0.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.35); }
.navbar.scrolled .nav-cta {
    background: var(--teal);
    color: white !important;
    box-shadow: var(--shadow-sm);
}
.nav-login {
    border: 1.5px solid rgba(255,255,255,0.45);
    color: rgba(255,255,255,0.9);
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
}
.nav-login:hover { background: rgba(255,255,255,0.12); color: white; }
.navbar.scrolled .nav-login {
    border-color: var(--teal);
    color: var(--teal);
}
.navbar.scrolled .nav-login:hover {
    background: var(--teal-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B7A7A 0%, #1AACAC 40%, #2ABFBF 70%, #3DD0D0 100%);
}

/* Animated blobs */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.4);
    top: -200px; right: -150px;
    animation-delay: 0s;
}
.blob-2 {
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.3);
    bottom: -100px; left: -100px;
    animation-delay: -3s;
    animation-duration: 10s;
}
.blob-3 {
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.2);
    top: 50%; left: 30%;
    animation-delay: -5s;
    animation-duration: 6s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: particleRise linear infinite;
}
@keyframes particleRise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Animate-in class */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #4AFF9F;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74,255,159,0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74,255,159,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(74,255,159,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,255,159,0); }
}

.hero-logo {
    height: 90px;
    width: auto;
    margin-bottom: 32px;
    filter: brightness(0) invert(1);
    drop-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: clamp(52px, 8vw, 88px);
    font-weight: 900;
    color: white;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-highlight {
    position: relative;
    display: inline-block;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 6px;
    background: rgba(255,255,255,0.35);
    border-radius: 3px;
    z-index: -1;
}

.hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.hero-sub strong { color: white; }

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: all 0.2s;
}
.badge:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.badge i { font-size: 13px; opacity: 0.85; }

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.btn-white {
    background: white;
    color: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,255,255,0.4); }
.btn-glass {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.btn-turquoise {
    background: var(--teal);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-turquoise:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 13px 28px;
}
.btn-outline-teal:hover { background: var(--teal-light); transform: translateY(-2px); }
.full-btn { width: 100%; justify-content: center; }
.mt-20 { margin-top: 20px; }

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
    animation: fadeInDelay 1s 1.5s both;
}
@keyframes fadeInDelay {
    from { opacity: 0; } to { opacity: 1; }
}
.scroll-mouse {
    width: 24px; height: 36px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* =============================================
   STATS BANNER
   ============================================= */
.stats-banner {
    background: white;
    border-bottom: 1px solid #F0F0F0;
    padding: 32px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 48px;
    text-align: center;
}
.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    display: inline;
}
.stat-sym {
    font-size: 28px;
    font-weight: 900;
    color: var(--teal);
    display: inline;
}
.stat-desc {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 112px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255,255,255,0.2);
    color: white;
}
.section-tag.light-dark {
    background: var(--teal-light);
    color: var(--teal-dark);
}
.section-header h2 {
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transition-delay: var(--card-delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--gray-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #E5E7EB;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.service-card.featured {
    background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-color: transparent;
}
.service-card.featured:hover {
    box-shadow: 0 20px 60px rgba(42,191,191,0.4);
}
.service-card-inner {
    padding: 44px 36px;
    position: relative;
    z-index: 2;
}
.service-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42,191,191,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s;
}
.service-card:hover .service-glow {
    top: -30%;
    right: -20%;
    width: 250px;
    height: 250px;
}
.service-card.featured .service-glow {
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.service-icon {
    width: 64px; height: 64px;
    background: var(--teal-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--teal);
    margin-bottom: 28px;
    transition: all 0.3s;
}
.service-card.featured .service-icon {
    background: rgba(255,255,255,0.22);
    color: white;
}
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(4deg);
}
.service-card-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.service-card.featured .service-card-inner h3 { color: white; }
.service-card-inner p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.service-card.featured .service-card-inner p { color: rgba(255,255,255,0.85); }
.service-list {
    list-style: none;
    margin-bottom: 28px;
    border-top: 1px solid #F3F4F6;
}
.service-card.featured .service-list { border-color: rgba(255,255,255,0.15); }
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #F3F4F6;
}
.service-card.featured .service-list li {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.15);
}
.service-list li i {
    font-size: 10px;
    color: var(--teal);
    flex-shrink: 0;
}
.service-card.featured .service-list li i { color: rgba(255,255,255,0.7); }
.service-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
}
.service-link:hover { gap: 12px; }
.service-card.featured .service-link { color: rgba(255,255,255,0.9); }

/* =============================================
   CARELEAVER
   ============================================= */
.careleaver-section {
    background: var(--teal-xlight);
    position: relative;
    overflow: hidden;
}
.careleaver-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(42,191,191,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.careleaver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.careleaver-text .section-tag { margin-bottom: 16px; }
.careleaver-text h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.careleaver-text p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.75;
}
.careleaver-text strong { color: var(--dark); }
.care-list {
    list-style: none;
    margin: 20px 0 24px;
}
.care-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(42,191,191,0.12);
}
.care-dot {
    width: 10px; height: 10px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--teal-light);
}
.quote-card {
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-bottom: 20px;
}
.quote-icon {
    font-size: 36px;
    color: var(--teal);
    opacity: 0.4;
    margin-bottom: 20px;
    display: block;
}
.quote-card blockquote {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}
.quote-card cite {
    color: var(--teal);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}
.quote-decoration {
    position: absolute;
    top: 20px; right: 20px;
    width: 80px; height: 80px;
    background: var(--teal-xlight);
    border-radius: 50%;
}
.quote-floating-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}
.quote-floating-card i {
    font-size: 24px;
    color: var(--teal);
    flex-shrink: 0;
}
.quote-floating-card strong { display: block; font-size: 14px; font-weight: 700; }
.quote-floating-card span { font-size: 16px; color: rgba(255,255,255,0.75); }

/* =============================================
   TEAM
   ============================================= */
.team-section { background: white; }
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto 48px;
}
.team-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}
.team-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.team-photo-wrap {
    position: relative;
    height: 220px;
}
.team-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    font-size: 48px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo-ring {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 24px;
    background: white;
    border-radius: 24px 24px 0 0;
}
.team-info { padding: 24px 28px 28px; }
.team-info h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.team-role {
    display: block;
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.team-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.team-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.team-contacts a i { color: var(--teal); width: 16px; font-size: 13px; }
.team-contacts a:hover { color: var(--teal); }
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}
.whatsapp-btn:hover { background: #1EBD59; transform: translateY(-2px); }

.team-contact-bar {
    background: linear-gradient(135deg, var(--teal-xlight), var(--teal-light));
    border: 1px solid rgba(42,191,191,0.2);
    border-radius: 24px;
    padding: 36px 44px;
}
.team-contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.team-contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.team-icon-wrap {
    width: 52px; height: 52px;
    background: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}
.team-contact-info strong { display: block; font-size: 17px; font-weight: 700; color: var(--dark); }
.team-contact-info p { font-size: 13px; color: var(--gray); margin-top: 2px; }
.team-contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}
.contact-action-btn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.contact-action-btn.whatsapp { background: #25D366; color: white; border-color: transparent; }
.contact-action-btn.whatsapp:hover { background: #1EBD59; color: white; }

/* =============================================
   SPENDEN
   ============================================= */
.spenden-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B7070 0%, #1AACAC 40%, #2ABFBF 75%, #3DD0D0 100%);
}
.spenden-bg { position: absolute; inset: 0; pointer-events: none; }
.spenden-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}
.s-blob-1 {
    width: 600px; height: 600px;
    background: white;
    top: -200px; right: -150px;
    animation: blobFloat 10s ease infinite;
}
.s-blob-2 {
    width: 400px; height: 400px;
    background: white;
    bottom: -150px; left: -100px;
    animation: blobFloat 14s ease infinite reverse;
}

.spenden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.spenden-card {
    background: white;
    border-radius: 28px;
    padding: 44px 36px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.spenden-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.spenden-card.featured-spenden {
    background: var(--dark2);
    transform: scale(1.04);
}
.spenden-card.featured-spenden:hover { transform: scale(1.04) translateY(-8px); }
.spenden-card.featured-spenden h3 { color: white; }
.spenden-card.featured-spenden p { color: rgba(255,255,255,0.6); }

.spenden-logo { margin-bottom: 24px; }
.twint-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--dark);
    background: #F0F0F0;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 10px;
}
.paypal-logo {
    font-size: 26px;
    font-weight: 800;
}
.pp-dark { color: #003087; }
.pp-blue { color: #009cde; }

.spenden-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.spenden-card p { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.65; }

.qr-code-box { margin: 8px 0 24px; }
.qr-inner {
    width: 110px; height: 110px;
    border: 2px dashed #D1D5DB;
    border-radius: 16px;
    margin: 0 auto 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #9CA3AF;
    font-size: 11px;
}
.qr-inner i { font-size: 42px; }
.qr-caption { font-size: 12px; color: #9CA3AF; }

.spenden-heart-icon {
    font-size: 52px;
    color: var(--teal);
    margin-bottom: 20px;
    animation: heartBeat 2s ease infinite;
}
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.12); }
    28% { transform: scale(1); }
    42% { transform: scale(1.08); }
    70% { transform: scale(1); }
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.amount-btn {
    padding: 12px 8px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s;
    font-family: 'Inter', sans-serif;
}
.amount-btn.active,
.amount-btn:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: white;
}
.amount-text { font-size: 13px; color: rgba(255,255,255,0.55) !important; margin-bottom: 24px !important; }

.btn-white-donate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    justify-content: center;
}
.btn-white-donate:hover { background: var(--teal-light); transform: translateY(-2px); }

.paypal-types {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.paypal-types span {
    font-size: 12px;
    color: var(--gray);
    background: var(--gray-light);
    padding: 4px 12px;
    border-radius: 50px;
}
.btn-paypal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #003087;
    color: white;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    justify-content: center;
}
.btn-paypal:hover { background: #002070; transform: translateY(-2px); }
.btn-dark-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: white;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    justify-content: center;
}
.btn-dark-card:hover { background: #0f1a24; transform: translateY(-2px); }

.bank-info {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    backdrop-filter: blur(6px);
}
.bank-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}
.bank-info h4 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 4px; }
.bank-info p { font-size: 14px; color: rgba(255,255,255,0.75); }
.bank-info > div { flex: 1; min-width: 200px; }
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* =============================================
   VEREIN
   ============================================= */
.verein-section { background: white; }
.verein-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
}
.verein-text h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.verein-text p { color: var(--gray); font-size: 15px; margin-bottom: 16px; line-height: 1.75; }
.verein-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0;
}
.verein-fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gray-light);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.25s;
}
.verein-fact:hover { background: var(--teal-light); }
.vf-icon {
    width: 38px; height: 38px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}
.verein-fact strong {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
}
.verein-fact span { font-size: 14px; color: var(--dark); font-weight: 500; }
.verein-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.verein-cards-stack { display: flex; flex-direction: column; gap: 14px; }
.vc-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
    position: relative;
    left: 0;
}
.vc-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateX(6px); }
.vc-card i { font-size: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.vc-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.vc-card p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
.vc-card-1 { background: var(--gray-light); }
.vc-card-2 { background: white; margin-left: 12px; }
.vc-card-3 { background: var(--teal-xlight); }
.vc-card-4 { background: white; margin-left: 20px; }

/* =============================================
   PARTNER
   ============================================= */
.partner-section { background: var(--gray-light); }
.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.partner-logo {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.partner-logo:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}
.partner-logo img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all 0.3s;
}
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }
.partner-logo span { font-size: 12px; font-weight: 600; color: var(--gray); text-align: center; }

/* =============================================
   KONTAKT
   ============================================= */
.kontakt-section { background: white; }
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.k-icon {
    width: 50px; height: 50px;
    background: var(--teal-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0;
}
.kontakt-item strong {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.kontakt-item a, .kontakt-item span {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.2s;
}
.kontakt-item a:hover { color: var(--teal); }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.s-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s;
}
.s-btn:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.s-fb { background: #1877F2; }
.s-ig { background: linear-gradient(45deg,#F09433,#E6683C,#DC2743,#CC2366,#BC1888); }
.s-li { background: #0A66C2; }
.s-wa { background: #25D366; }

.kontakt-form-box {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.form-header { margin-bottom: 28px; }
.form-header h3 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-header p { color: var(--gray); font-size: 14px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.f-input {
    padding: 14px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.22s;
    outline: none;
    background: white;
    width: 100%;
}
.f-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,191,191,0.12); }
textarea.f-input { resize: vertical; min-height: 120px; }

/* =============================================
   LOGIN
   ============================================= */
.login-section { background: var(--gray-light); }
.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.login-info h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.login-info > p { color: var(--gray); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.login-perks { list-style: none; }
.login-perks li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #E5E7EB;
}
.perk-icon {
    width: 44px; height: 44px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0;
}
.login-perks li strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.login-perks li span { font-size: 13px; color: var(--gray); }
.login-note-text {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.login-note-text i { color: var(--teal); }
.login-note-text a { color: var(--teal); font-weight: 700; text-decoration: none; }

.login-card {
    background: white;
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    border: 1px solid #E5E7EB;
}
.login-card-header { text-align: center; margin-bottom: 32px; }
.login-avatar { font-size: 60px; color: var(--teal); margin-bottom: 16px; }
.login-card-header h3 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.login-card-header p { color: var(--gray); font-size: 14px; }

.login-form { display: flex; flex-direction: column; gap: 0; }
.lf-field { margin-bottom: 18px; }
.lf-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.lf-input-wrap { position: relative; }
.lf-icon {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 15px;
}
.lf-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: all 0.22s;
    background: white;
}
.lf-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,191,191,0.1); }
.pw-eye {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    font-size: 16px;
    transition: color 0.2s;
}
.pw-eye:hover { color: var(--teal); }
.lf-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.lf-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
}
.lf-forgot { color: var(--teal); font-size: 14px; text-decoration: none; font-weight: 600; }
.login-submit { margin-bottom: 0; }
.login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.login-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: #E5E7EB;
}
.login-divider span {
    background: white;
    padding: 0 12px;
    position: relative;
    font-size: 13px;
    color: var(--gray);
}
.btn-sso {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.22s;
}
.btn-sso i { color: var(--teal); }
.btn-sso:hover { border-color: var(--teal); background: var(--teal-xlight); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark2); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 18px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s;
}
.footer-social a:hover { background: var(--teal); color: white; transform: translateY(-3px); }

.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }

.footer-contact-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}
.footer-contact-item i { color: var(--teal); margin-top: 3px; font-size: 13px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-inner p { color: rgba(255,255,255,0.28); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px; height: 48px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-4px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { order: -1; }
    .verein-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .spenden-grid { grid-template-columns: 1fr; }
    .spenden-card.featured-spenden { transform: none; }
    .spenden-card.featured-spenden:hover { transform: translateY(-8px); }
    .careleaver-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .login-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(15,26,36,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        z-index: 999;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-close {
        display: flex;
        position: absolute;
        top: 24px; right: 24px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    .nav-item { color: white !important; font-size: 18px; padding: 12px 24px; }
    .nav-cta { font-size: 16px; padding: 14px 28px; }
    .nav-login { border-color: rgba(255,255,255,0.3) !important; color: white !important; font-size: 16px; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 16px; }
    .hero-logo { height: 60px; }

    .stats-grid { gap: 0; flex-wrap: wrap; }
    .stat-item { padding: 12px 24px; }
    .stat-divider { display: none; }

    .team-grid { grid-template-columns: 1fr; }
    .team-contact-bar-inner { flex-direction: column; align-items: flex-start; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .kontakt-form-box { padding: 32px 24px; }
    .login-card { padding: 36px 24px; }
    .bank-info { flex-direction: column; text-align: center; }
    .bank-icon { margin: 0 auto; }
    .careleaver-grid { gap: 40px; }
    .verein-facts { grid-template-columns: 1fr; }
    .verein-btns { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .back-to-top { bottom: 20px; right: 20px; }
}
