/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0f;
    --bg-2: #12121a;
    --surface: #16161f;
    --surface-2: #1d1d28;
    --line: rgba(255,255,255,0.08);
    --text: #ececf1;
    --muted: #9a9aab;

    --magenta: #ff2d95;
    --cyan: #00e7ff;
    --green: #39ff8b;

    --grad: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 50%, var(--green) 100%);
    --grad-soft: linear-gradient(135deg, rgba(255,45,149,0.15), rgba(0,231,255,0.15));

    --radius: 18px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 40px rgba(255,45,149,0.25), 0 0 80px rgba(0,231,255,0.15);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ ANIMATED BACKGROUND ============ */
.bg-grid {
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: -2;
    animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.bg-glow {
    position: fixed;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: -1;
    animation: float 18s ease-in-out infinite;
}
.glow-1 { background: var(--magenta); top: -200px; left: -150px; }
.glow-2 { background: var(--cyan); top: 40%; right: -200px; animation-delay: -6s; }
.glow-3 { background: var(--green); bottom: -200px; left: 30%; animation-delay: -12s; opacity: 0.2; }

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 50px) scale(0.95); }
}

/* ============ NAV ============ */
.navbar {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4vw;
    background: rgba(10,10,15,0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.1rem;
}
.logo-mark {
    color: var(--magenta);
    text-shadow: 0 0 12px var(--magenta);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 12px var(--magenta); }
    50% { opacity: 0.6; text-shadow: 0 0 24px var(--magenta), 0 0 4px var(--cyan); }
}
.logo-text .accent {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.3s var(--ease);
}
.nav-links a:not(.cta-btn)::after {
    content: '';
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--grad);
    transition: width 0.35s var(--ease);
}
.nav-links a:not(.cta-btn):hover { color: var(--text); }
.nav-links a:not(.cta-btn):hover::after { width: 100%; }

.cta-btn {
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: var(--grad);
    color: #0a0a0f !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(255,45,149,0.4);
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,45,149,0.6), 0 0 20px rgba(0,231,255,0.4);
}

/* Burger */
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px;
}
.nav-burger span {
    display: block; width: 26px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ============ HERO ============ */
.hero {
    padding: 7rem 4vw 5rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 4px;
    color: var(--cyan);
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(0,231,255,0.3);
    border-radius: 999px;
    margin-bottom: 2rem;
    background: rgba(0,231,255,0.05);
    animation: fadeUp 0.8s var(--ease);
}
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s var(--ease) 0.1s both;
}
.gradient-text {
    background: var(--grad);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}
.hero-subtitle {
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-cta {
    display: flex; justify-content: center; gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1s var(--ease) 0.3s both;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.btn-primary {
    background: var(--grad);
    color: #0a0a0f;
    box-shadow: 0 4px 24px rgba(255,45,149,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,45,149,0.55), 0 0 30px rgba(0,231,255,0.35);
}
.btn-ghost {
    background: rgba(255,255,255,0.04);
    border-color: var(--line);
    color: var(--text);
}
.btn-ghost:hover {
    background: rgba(0,231,255,0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex; justify-content: center; gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeUp 1s var(--ease) 0.4s both;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.stat span { color: var(--muted); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

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

/* ============ PACKAGES ============ */
.packages {
    padding: 6rem 4vw;
    max-width: 1300px;
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.section-head h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

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

.pack-card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
    display: flex; flex-direction: column;
    position: relative;
}
.pack-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: var(--grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}
.pack-card[data-pack] { cursor: pointer; }
.pack-card[data-pack]:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
    box-shadow: 0 0 0 1px rgba(0,231,255,0.5), 0 0 60px rgba(0,231,255,0.3);
}
.pack-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 60px rgba(255,45,149,0.35),
        0 0 100px rgba(0,231,255,0.25);
}
.pack-card:hover::before { opacity: 1; }
.pack-card:active { transform: translateY(-6px) scale(1.01); }

.pack-card.featured {
    transform: translateY(-12px);
    box-shadow: 0 0 0 1px rgba(255,45,149,0.4), 0 20px 60px rgba(255,45,149,0.2);
}
.pack-card.featured::before { opacity: 1; }
.pack-card.featured:hover { transform: translateY(-20px) scale(1.02); }

.pack-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s var(--ease);
}
.pack-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0) 30%, rgba(10,10,15,0.85) 100%);
}
.pack-card:hover .pack-img { transform: scale(1.06); }

.pack-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    padding: 0.4rem 0.9rem;
    background: rgba(10,10,15,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
}
.badge-hot { color: #0a0a0f; background: var(--grad); border-color: transparent; }

.pack-body {
    padding: 1.8rem;
    display: flex; flex-direction: column;
    flex: 1;
}
.pack-body h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.pack-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }

.pack-features {
    list-style: none;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
}
.pack-features li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    font-size: 0.92rem;
    color: #c8c8d4;
}
.pack-features li::before {
    content: '✓';
    position: absolute; left: 0; top: 0.45rem;
    width: 18px; height: 18px;
    background: var(--grad);
    color: #0a0a0f;
    font-size: 0.7rem;
    font-weight: 900;
    display: grid; place-items: center;
    border-radius: 50%;
}

.pack-price {
    display: flex; align-items: baseline; gap: 0.4rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}
.price-label { color: var(--muted); font-size: 0.85rem; }
.price-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.price-unit { color: var(--muted); font-size: 0.9rem; }

.pack-actions { display: flex; gap: 0.7rem; }
.pack-actions .btn { flex: 1; }

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid var(--line);
    background: rgba(10,10,15,0.8);
    padding: 4rem 4vw 2rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 3rem;
    justify-content: space-between;
}
.footer-brand p { color: var(--muted); margin-top: 0.6rem; font-size: 0.92rem; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-cols h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--cyan);
}
.footer-cols a {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    padding: 0.25rem 0;
    transition: color 0.3s var(--ease);
}
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 820px) {
    .nav-burger { display: flex; z-index: 110; }
    .nav-links {
        position: fixed;
        inset: 70px 0 0 0;
        flex-direction: column;
        background: rgba(10,10,15,0.96);
        backdrop-filter: blur(20px);
        padding: 3rem 2rem;
        gap: 1.5rem;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
    }
    .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links a { font-size: 1.1rem; }

    .hero { padding: 4rem 5vw 3rem; }
    .hero-stats { gap: 2rem; }
    .pack-card.featured { transform: none; }
    .pack-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 500px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .hero-stats { gap: 1.5rem; }
    .stat strong { font-size: 1.6rem; }
}

/* ============ PACKAGE MODAL ============ */
body.modal-open { overflow: hidden; }

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(5, 5, 12, 0.55);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(900px, 92vw);
    max-height: 90vh;
    overflow: hidden;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,45,149,0.10), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(0,231,255,0.10), transparent 45%),
        rgba(10, 10, 20, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 20px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(255,45,149,0.18),
        0 0 100px rgba(0,231,255,0.12);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition:
        transform 0.45s var(--ease),
        opacity 0.35s var(--ease);
}
.modal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255,45,149,0.6),
        rgba(0,231,255,0.6) 50%,
        rgba(255,45,149,0.2));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}
.modal-overlay.is-open .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    z-index: 2;
}
.modal-close:hover {
    background: rgba(0,231,255,0.12);
    border-color: rgba(0,231,255,0.5);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0,231,255,0.35);
    transform: rotate(90deg);
}
.modal-close:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.modal-head {
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    padding-right: 3rem;
}
.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.modal-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.modal-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,231,255,0.4) transparent;
}
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--magenta), var(--cyan));
    border-radius: 4px;
}

.modal-intro {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.92;
    margin: 0;
}

.modal-section {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    min-height: unset;
    max-height: none;
    overflow: visible;
    margin: 0;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.modal-section:hover {
    border-color: rgba(0,231,255,0.25);
    background: rgba(0,231,255,0.04);
}
.modal-section.modal-hint {
    background: linear-gradient(135deg, rgba(255,45,149,0.06), rgba(0,231,255,0.04));
    border-color: rgba(255,45,149,0.18);
}
.modal-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    color: var(--text);
}
.modal-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--grad-soft);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}
.modal-list {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}
.modal-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    animation: modalItemIn 0.5s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 40ms + 150ms);
}
.modal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 10px rgba(0,231,255,0.6);
}
.modal-section p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
    opacity: 0.88;
}
@keyframes modalItemIn {
    to { opacity: 1; transform: translateY(0); }
}

.modal-foot {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    background: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: none;
    border-top: none;
}

.modal-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: none;
    min-height: 80px;
    padding: 1.4rem 2.5rem;
    border: 0;
    border-radius: 999px;
    background: var(--grad);
    background-size: 200% auto;
    color: #0a0a0f;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(255,45,149,0.45),
        0 0 50px rgba(0,231,255,0.30),
        inset 0 0 0 1px rgba(255,255,255,0.15);
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        background-position 0.6s var(--ease);
}
.modal-cta-primary svg { flex-shrink: 0; transition: transform 0.35s var(--ease); }
.modal-cta-primary:hover {
    transform: scale(1.02);
    background-position: 100% center;
    box-shadow:
        0 14px 45px rgba(255,45,149,0.65),
        0 0 80px rgba(0,231,255,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.25);
}
.modal-cta-primary:hover svg { transform: translateX(4px); }
.modal-cta-primary:active {
    transform: scale(0.98);
    box-shadow:
        0 4px 20px rgba(255,45,149,0.4),
        0 0 30px rgba(0,231,255,0.25);
}
.modal-cta-primary:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

@media (max-width: 560px) {
    .modal { padding: 1.25rem; border-radius: 20px; }
    .modal-head { padding-right: 2.5rem; }
    .modal-section { padding: 0.9rem 1rem; }
    .modal-cta-primary {
        min-height: 64px;
        padding: 1.1rem 1.5rem;
        letter-spacing: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal-overlay, .modal, .modal-list li, .modal-close { transition: none; animation: none; }
    .modal-list li { opacity: 1; transform: none; }
}

/* ============ PACK HINT ============ */
.pack-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(236, 236, 241, 0.45);
    transition: color 0.35s var(--ease), letter-spacing 0.35s var(--ease), transform 0.35s var(--ease);
}
.pack-hint::before {
    content: "";
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
    transition: width 0.4s var(--ease), background 0.4s var(--ease);
}
.pack-card:hover .pack-hint {
    color: var(--cyan);
    letter-spacing: 1.6px;
    transform: translateX(2px);
}
.pack-card:hover .pack-hint::before {
    width: 30px;
    background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

/* ============ SOCIAL ICONS ============ */
.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;          /* Größe des klickbaren Bereichs */
    height: 48px;
}

.social-icon {
    width: 100%;          /* füllt den gesamten a-Tag aus */
    height: 100%;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.social-link:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 0 20px rgba(255, 0, 180, 0.35),
        0 0 30px rgba(0, 255, 255, 0.25);
}

.social-link:active {
    transform: scale(0.97);
}

.social-link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 0, 180, 0.35),
        0 0 30px rgba(0, 255, 255, 0.25);
}

/* ============ CONTACT HIGHLIGHT ============ */
.contact-col .contact-item {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: 8px;
    transition: color 0.3s var(--ease);
}
.contact-col .contact-item.is-highlight {
    animation: contactPulse 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i, 0) * 120ms);
}
@keyframes contactPulse {
    0% {
        color: var(--text);
        background: rgba(255, 45, 149, 0);
        box-shadow: 0 0 0 rgba(0,231,255,0);
        transform: scale(1);
    }
    20% {
        color: #fff;
        background: linear-gradient(135deg, rgba(255,45,149,0.18), rgba(0,231,255,0.18));
        box-shadow:
            0 0 0 1px rgba(0,231,255,0.5),
            0 0 24px rgba(255,45,149,0.55),
            0 0 40px rgba(0,231,255,0.45);
        transform: scale(1.04);
    }
    55% {
        color: #fff;
        background: linear-gradient(135deg, rgba(255,45,149,0.12), rgba(0,231,255,0.12));
        box-shadow:
            0 0 0 1px rgba(255,45,149,0.4),
            0 0 18px rgba(0,231,255,0.4);
        transform: scale(1.02);
    }
    100% {
        color: var(--text);
        background: rgba(255,255,255,0);
        box-shadow: 0 0 0 rgba(0,0,0,0);
        transform: scale(1);
    }
}

/* ============ MODAL IMAGE SLIDER ============ */
.modal-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,45,149,0.10), transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(0,231,255,0.10), transparent 60%),
        rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 10px 40px rgba(0,0,0,0.35);
    flex-shrink: 0;
}
.modal-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.modal-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-sizing: border-box;
}
.modal-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

.modal-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10,10,20,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
    z-index: 2;
}
.modal-slider-nav.prev { left: 0.75rem; }
.modal-slider-nav.next { right: 0.75rem; }
.modal-slider-nav:hover {
    background: rgba(0,231,255,0.15);
    border-color: rgba(0,231,255,0.55);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0,231,255,0.45);
}
.modal-slider-nav:active { transform: translateY(-50%) scale(0.94); }
.modal-slider-nav:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.modal-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    z-index: 2;
}
.modal-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.modal-slider-dot:hover { background: rgba(255,255,255,0.55); }
.modal-slider-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--grad);
    box-shadow: 0 0 12px rgba(255,45,149,0.55), 0 0 18px rgba(0,231,255,0.4);
}
.modal-slider-dot:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

@media (max-width: 560px) {
    .modal-slider { aspect-ratio: 4 / 3; }
    .modal-slider-nav { width: 36px; height: 36px; }
    .modal-slider-nav.prev { left: 0.4rem; }
    .modal-slider-nav.next { right: 0.4rem; }
    .modal-slide { padding: 0.75rem; }
}

/* ============ ADDON SECTION ============ */
.packages.addons {
    margin-top: clamp(2rem, 4vw, 4.25rem);
    padding-top: 0;
}

.pack-grid--addons {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) {
    .pack-grid--addons { grid-template-columns: repeat(4, 1fr); }
}

.pack-card--sm .pack-img { height: 150px; }
.pack-card--sm .pack-body { padding: 1.2rem 1.25rem; }
.pack-card--sm .pack-body h3 { font-size: 1.2rem; }
.pack-card--sm .pack-desc { font-size: 0.88rem; margin-bottom: 1rem; }
.pack-card--sm .pack-price { margin-bottom: 0.35rem; }
.pack-card--sm .pack-hint { font-size: 0.7rem; }

.pack-img--icon {
    background:
        radial-gradient(circle at 30% 25%, rgba(255,45,149,0.22), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(0,231,255,0.20), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    display: flex;
    align-items: center;
    justify-content: center;
}
.pack-img--icon::before {
    content: attr(data-icon);
    font-size: 3.6rem;
    line-height: 1;
    filter: drop-shadow(0 0 18px rgba(255,45,149,0.5)) drop-shadow(0 0 28px rgba(0,231,255,0.35));
    transition: transform 0.6s var(--ease);
}
.pack-card:hover .pack-img--icon::before { transform: scale(1.12) rotate(-3deg); }
.pack-img--icon::after { display: none; }

/* ============ FOOTER LEGAL ============ */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}
.footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
}
.footer-legal a {
    color: var(--muted);
    transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--cyan); }
.footer-legal .legal-sep { color: var(--muted); opacity: 0.6; }

/* ============ LEGAL PAGE ============ */
.legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 7rem 4vw 5rem;
}
.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.legal-page h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--text);
}
.legal-page p, .legal-page li {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}
.legal-page ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.legal-page a { color: var(--cyan); }
.legal-page a:hover { text-decoration: underline; }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s var(--ease);
}
.legal-back:hover { color: var(--cyan); }
