:root {
    --partier-color: #FF8888;
    --partier-selected: #ffbdbd;
    --partier-transparent: rgba(255, 136, 136, 0.5);
    --text-dark: #333;
    --text-light: #666;
    --background: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 100vh;
    padding: 0px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--partier-color) 0%, var(--partier-selected) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 136, 136, 0.1);
    z-index: 1;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 136, 136, 0.3);
    position: relative;
    z-index: 2;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}

.header h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.header p {
    font-size: 1.1rem;
    padding: 5px 20px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--partier-selected);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Main Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 15px;
    margin-top: -100px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

/* Feature Section */
.feature-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.feature-text {
    flex: 1;
    max-width: 50%;
}

.feature-text h2 {
    color: var(--partier-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-mockup {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

/* Features Tab Switcher */
.features-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.features-title {
    text-align: center;
    color: var(--partier-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.feature-tab {
    background: none;
    border: 2px solid var(--partier-selected);
    color: var(--text-light);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.feature-tab:hover {
    border-color: var(--partier-color);
    color: var(--partier-color);
}

.feature-tab.active {
    background: var(--partier-color);
    border-color: var(--partier-color);
    color: white;
}

.feature-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}

.feature-phone {
    flex: 0 0 auto;
    position: relative;
}

.feature-phone .phone-frame {
    width: 260px;
}

.feature-phone .phone-screen {
    width: 242px;
    border-radius: 46px;
    padding: 12px 12px 17px 12px;
}

.feature-info {
    flex: 1;
    max-width: 360px;
}

.feature-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* phone-mockup / phone-frame / phone-screen (hero section) */
.phone-mockup {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.phone-frame {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
}

.phone-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: auto;
    z-index: 2;
    border-radius: 50px;
    padding: 13px 13px 18px 13px;
}

/* App Store Links Section */
.app-links-section {
    margin-bottom: 3rem;
    padding: 2rem;
    text-align: center;
}

.app-links-section h2 {
    color: var(--partier-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 136, 136, 0.3);
}

.store-link img {
    padding: 2px;
    height: 60px;
    width: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, white 0%, var(--partier-selected) 40%, var(--partier-selected) 60%, white 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 136, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('/images/circles.png') repeat;
    opacity: 0.05;
    animation: float 15s ease-in-out infinite;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: var(--partier-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-action {
    flex: 1;
    display: flex;
    justify-content: center;
}

.email-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.email-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.email-card h3 {
    color: var(--partier-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--partier-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--partier-color);
}

.email-link:hover {
    background: #e06060;
    border-color: #e06060;
    color: white;
    transform: scale(1.05);
}

.email-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Legal Links Section */
.links-section {
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.links-section a {
    color: var(--partier-color);
    text-decoration: none;
    margin: 0 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--partier-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.links-section a:hover {
    background-color: var(--partier-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--partier-transparent);
}

/* Social Media Section */
.social-section {
    margin-bottom: 3rem;
    padding: 2rem;
    text-align: center;
}

.social-section h3 {
    color: var(--partier-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.01em;
}

.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook img {
    filter: brightness(0) invert(1);
}

.social-link.facebook:hover {
    background: #0f65d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.4);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.header-cta .store-link img {
    height: 52px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.header-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.2rem;
    position: relative;
    z-index: 2;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
    text-decoration: none;
}

.header-social-link:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.header-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.header-social-link.facebook-icon img {
    filter: brightness(0) invert(1);
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(135deg, var(--partier-color) 0%, #ffbdbd 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.proof-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.proof-badge {
    background: white;
    color: var(--partier-color);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Blog / Community Posts Slider */
.blog-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.blog-section h2 {
    color: var(--partier-color);
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.slider-wrapper {
    position: relative;
}

.slider-track-outer {
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.post-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 136, 136, 0.15);
    min-height: 260px;
}

.post-card-image {
    flex: 0 0 320px;
    max-width: 320px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card-body {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.post-tag {
    background: var(--partier-selected);
    color: var(--partier-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
    flex: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    background: var(--partier-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 25px;
    align-self: flex-start;
    transition: all 0.25s ease;
}

.post-read-more:hover {
    background: #e06060;
    transform: translateX(3px);
}

.post-likes {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--partier-selected);
    color: var(--partier-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--partier-color);
    color: white;
    border-color: var(--partier-color);
}

.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--partier-selected);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--partier-color);
    width: 24px;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-card {
        flex-direction: column;
        min-height: unset;
    }

    .post-card-image {
        flex: unset;
        max-width: 100%;
        height: 200px;
    }

    .post-card-body {
        padding: 1.25rem;
    }

    .slider-btn.prev { left: -14px; }
    .slider-btn.next { right: -14px; }

    .feature-showcase {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .feature-info {
        max-width: 100%;
    }

    .feature-info h3 {
        font-size: 1.3rem;
    }

    .feature-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .feature-text {
        max-width: 100%;
    }

    .feature-text h2 {
        font-size: 1.6rem;
    }

    .feature-mockup {
        max-width: 100%;
    }

    .app-links-section {
        padding: 1.5rem;
    }

    .app-links-section h2 {
        font-size: 1.5rem;
    }

    .store-buttons {
        gap: 15px;
    }

    .store-link img {
        height: 60px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 1.1rem;
    }

    .email-card {
        padding: 2rem 1.5rem;
        transform: translateY(0);
        max-width: 100%;
        width: 100%;
    }

    .email-card:hover {
        transform: translateY(-5px);
    }

    .email-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        word-break: break-all;
    }

    .social-section {
        padding: 1.5rem;
    }

    .social-section h3 {
        font-size: 1.3rem;
    }

    .social-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .feature-section {
        gap: 1.5rem;
    }

    .feature-text h2 {
        font-size: 1.4rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-link img {
        height: 45px;
    }

    /* Contact Section Very Small Mobile */
    .contact-section {
        padding: 1.5rem 1rem;
    }

    .contact-text h2 {
        font-size: 1.6rem;
    }

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

    .email-card {
        padding: 1.5rem 1rem;
    }

    .email-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        word-break: break-all;
    }

    .email-icon {
        font-size: 1.5rem;
    }

    .social-section {
        padding: 1rem;
    }

    .social-section h3 {
        font-size: 1.2rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        width: 200px;
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .contact-section {
        padding: 1rem 0.5rem;
    }

    .email-card {
        padding: 1rem 0.5rem;
    }

    .email-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .contact-text h2 {
        font-size: 1.4rem;
    }

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