:root {
    --white: #ffffff;
    --dark: #2b2e34;
    --accent: #fb3429;
    --accent-soft: #fbe4e2;
    --accent-deep: #c4251e;
    --muted: #6f7380;
    --bg: #f6f6f7;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e7e7ea;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-wrap {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid #e7e7ea;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(43, 46, 52, 0.12);
}

.logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
}

.brand span {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 1.25rem;
    font-weight: 500;
}

.nav a {
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #e7e7ea;
    border-radius: 10px;
    padding: 0.35rem 0.65rem;
    font-size: 1.1rem;
}

.hero {
    padding: 5rem 0 4rem;
    background:
        radial-gradient(circle at 10% 10%, rgba(251, 52, 41, 0.12), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(43, 46, 52, 0.08), transparent 50%),
        linear-gradient(120deg, #ffffff 10%, var(--accent-soft) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(251, 52, 41, 0.28);
}

.btn.ghost {
    border-color: var(--accent);
    color: var(--accent);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-media {
    display: flex;
    justify-content: center;
}

.video-frame {
    background: var(--dark);
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(43, 46, 52, 0.2);
    width: 100%;
}

video {
    width: 100%;
    border-radius: 12px;
}

.section {
    padding: 4rem 0;
}

.section.alt {
    background: var(--bg);
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 2rem;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 1.5rem;
}

.grid-1 {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e7e7ea;
    box-shadow: 0 15px 30px rgba(43, 46, 52, 0.06);
}

.card.member {
    text-align: center;
}

.card .card-body {
    padding-top: 1rem;
}

.track-card {
    display: grid;
    gap: 1.25rem;
}

.track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.track-header h3 {
    margin-bottom: 0.25rem;
}

.status {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    border: 1px solid #f1c6c3;
}

.status img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.track-media img,
.track-media video {
    width: 100%;
    border-radius: 12px;
}

.zoom-trigger {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.zoom-trigger img {
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.zoom-trigger:hover img {
    transform: scale(1.01);
}

.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 16, 20, 0.82);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.zoom-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.zoom-content {
    position: relative;
    max-width: 96vw;
    max-height: 88vh;
}

.zoom-content img {
    width: auto;
    height: auto;
    max-width: 96vw;
    max-height: 88vh;
    border-radius: 16px;
    object-fit: contain;
}

.zoom-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: var(--white);
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.track-body {
    display: grid;
    gap: 1rem;
}

.track-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.track-map iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 12px;
}

.avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-soft), #ffffff);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--dark);
}

.list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.pricing-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #f8f8fa;
    border: 1px solid #ececf0;
    color: var(--dark);
}

.pricing-item strong {
    color: var(--accent-deep);
    white-space: nowrap;
}

.pricing-item.highlight {
    background: var(--accent-soft);
    border-color: #f3b9b3;
}

.note {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #fdf3f2;
    border: 1px solid #f3b9b3;
    color: var(--dark);
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.bank-card {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px;
    gap: 1.5rem;
    align-items: center;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.payment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.payment-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.payment-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-details p {
    margin: 0;
    line-height: 1.6;
}

.payment-details .btn {
    margin-top: 0.5rem;
}

.bank-qr {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
}

.bank-qr > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bank-qr img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #e7e7ea;
    background: #ffffff;
    padding: 0.35rem;
}

.muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.form {
    display: grid;
    gap: 1.25rem;
}

.checkbox-group {
    display: grid;
    gap: 0.75rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.annexe-section {
    display: none;
    gap: 0.75rem;
    align-items: start;
}

.annexe-section.is-visible {
    display: grid;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

input,
select,
textarea {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #d9d9de;
    font-family: inherit;
    font-size: 1rem;
}

.notice {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.notice.success {
    background: #e7f6ec;
    color: #1f7a3a;
}

.notice.error {
    background: #fdecec;
    color: #b42318;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid #e7e7ea;
}

.timeline-item .date {
    font-weight: 700;
    color: var(--accent);
}

.link-card {
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 12px 24px rgba(251, 52, 41, 0.12);
}

.link-group {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.link-group:first-of-type {
    margin-top: 0;
}

.link-group h3 {
    font-size: 1.2rem;
    color: var(--dark);
}

.site-footer {
    padding: 2rem 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: 70px;
        right: 1rem;
        flex-direction: column;
        background: var(--white);
        padding: 1rem;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(43, 46, 52, 0.15);
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .bank-card {
        grid-template-columns: 1fr;
    }
}
