:root {
    --ink: #12263a;
    --sea: #0f766e;
    --mint: #d8f3e8;
    --sand: #fff5eb;
    --coral: #ff7a59;
    --sky: #4da7ff;
    --card: #ffffff;
    --soft-shadow: 0 18px 55px rgba(18, 38, 58, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 122, 89, 0.12), transparent 32%),
        radial-gradient(circle at 85% 0%, rgba(77, 167, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, #f4fbff 55%, #fffdf9 100%);
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.45s ease;
}

body.page-ready {
    opacity: 1;
}

body.page-leave {
    opacity: 0;
}

::selection {
    background: rgba(15, 118, 110, 0.2);
    color: #052127;
}

.glass-nav {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(18, 38, 58, 0.06);
}

.nav-link {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #3f5467;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #072a35;
    background: rgba(15, 118, 110, 0.12);
}

.mobile-nav-link {
    display: block;
    border-radius: 0.85rem;
    padding: 0.75rem 0.95rem;
    color: #385069;
    font-weight: 600;
    transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(15, 118, 110, 0.12);
    color: #0a3440;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, var(--sea) 0%, #13a495 100%);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.32);
}

.btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 700;
    color: #18415a;
    border: 1px solid rgba(24, 65, 90, 0.18);
    background: rgba(255, 255, 255, 0.72);
    transition: all 0.3s ease;
}

.btn-alt:hover {
    border-color: rgba(24, 65, 90, 0.35);
    background: #fff;
}

.reveal-section,
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.14s; }
.reveal-item:nth-child(4) { transition-delay: 0.2s; }
.reveal-item:nth-child(5) { transition-delay: 0.26s; }

.reveal-section.visible,
.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.soft-card {
    background: var(--card);
    border: 1px solid rgba(18, 38, 58, 0.07);
    box-shadow: var(--soft-shadow);
    border-radius: 1.4rem;
}

.faq-icon {
    transition: transform 0.28s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.25rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.16);
}

.swiper-pagination-bullet {
    width: 11px !important;
    height: 11px !important;
    opacity: 1 !important;
    background: rgba(18, 38, 58, 0.28) !important;
}

.swiper-pagination-bullet-active {
    width: 30px !important;
    border-radius: 999px !important;
    background: linear-gradient(120deg, var(--sea) 0%, #13a495 100%) !important;
}

.gradient-strip {
    background: linear-gradient(95deg, #0f766e 0%, #0ea5a2 38%, #4da7ff 100%);
}

.hero-slide-image {
    display: block;
    width: 100%;
    height: clamp(240px, 52vw, 430px);
    object-fit: cover;
}

.input-style {
    width: 100%;
    border: 1px solid rgba(18, 38, 58, 0.16);
    border-radius: 0.9rem;
    padding: 0.82rem 0.95rem;
    background: #fff;
    color: #1f3347;
}

.input-style:focus {
    outline: none;
    border-color: rgba(15, 118, 110, 0.65);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    transform: translateY(24px);
    opacity: 0;
    transition: all 0.35s ease;
}

#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-mesh {
        border-radius: 1.35rem;
    }

    .hero-slide-image {
        height: 260px;
    }
}
