:root {
    --primary-color: #002366;
    --accent-color: #0047AB; /* More vibrant Royal Blue */
    --text-color: #2c3e50;
    --bg-color: #f8faff;
    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-logo: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 71, 171, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 71, 171, 0.04) 0%, transparent 40%);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 3rem;
    max-width: 800px;
    width: 90%;
    animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

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

/* --- LOGO STYLE --- */
.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.logo-inner {
    display: flex;
    align-items: baseline;
    position: relative;
}

.logo-klap {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    color: #1a1a1a;
    line-height: 1;
}

.logo-art {
    font-family: var(--font-script);
    font-size: 6rem;
    color: var(--accent-color);
    margin-left: -1.5rem;
    line-height: 0.1;
    z-index: 1;
    transform: rotate(-5deg);
}

.logo-tagline {
    font-family: var(--font-main);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    color: #666;
}

/* --- TEXT STYLE --- */

/* --- REVIEWS SLIDER --- */
.reviews-slider-container {
    margin-top: 4rem;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-wrapper {
    width: 100%;
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeScale 0.8s ease-out;
}

.review-slide.active {
    display: block;
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-main);
    font-size: 1rem !important;
    line-height: 1.6;
    color: #4a5568 !important;
    font-style: italic;
    margin-bottom: 1.25rem !important;
    max-width: 600px !important;
}

.reviewer-name {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #1a1a1a;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 35, 102, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.4);
}

.reviews-cta {
    margin-top: 2.5rem;
}

.btn-secondary {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #fff;
    background: var(--accent-color);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.15);
}



/* --- TEXT STYLE --- */
h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

p {
    font-size: 1.25rem;
    color: #4a5568;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

footer {
    margin-top: 4rem;
}

.contact-hint {
    font-size: 0.9rem;
    color: #888;
}

.contact-hint a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px transparent;
    transition: all 0.3s ease;
}

.contact-hint a:hover {
    border-bottom: 1px solid var(--accent-color);
}

/* --- REFINED BACKGROUND --- */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.blob-1 {
    top: -100px;
    right: -100px;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -150px;
    left: -150px;
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

@media (max-width: 480px) {
    .logo-klap { font-size: 2rem; }
    .logo-art { font-size: 4rem; }
    h1 { font-size: 1.5rem; }
    p { font-size: 1rem; }
}
