:root {
    --primary: #0891b2; /* Cyan/Teal */
    --primary-hover: #0e7490;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --bg-light: #f0f9ff;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background-color: #f8fafc;
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span { color: var(--primary); }

.hero {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.6)), url('/assets/douche_hero.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.03);
}

footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover { color: white; }

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(1);
}

.trust-logos img {
    height: 35px;
    transition: 0.3s;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 16px;
    border-radius: 99px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.4);
    z-index: 999;
    display: none; /* Mobile only via Media Query */
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideUp 0.5s ease-out;
}

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

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    h1 { font-size: 2.2rem; }
    .hero { padding: 60px 0; }
}
