:root {
    /* Warna identitas (dipertahankan) */
    --primary: #003399;
    --primary-dark: #002266;
    --primary-tint: #e0ebff;
    --secondary: #ff6600;
    --secondary-dark: #cc5200;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --border: #e2e8f0;

    /* Panel gelap untuk section "Data Publik" */
    --navy-1: #001c4d;
    --navy-2: #003b8e;

    /* Skala radius & bayangan — dipakai konsisten di semua komponen */
    --radius-sm: .5rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, .08), 0 4px 10px -4px rgba(15, 23, 42, .04);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, .18);

    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-bounce: cubic-bezier(.175, .885, .32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

body {
    background-color: white;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
.dot:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* ==================== NAVBAR ==================== */
nav {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: .8rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all .3s var(--ease-bounce);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: .95rem;
    padding: .5rem 0;
    display: inline-block;
    position: relative;
    transition: color .3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width .3s var(--ease);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* ==================== SISTEM TOMBOL (disatukan, tidak lagi triplikat) ==================== */
.btn-login {
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .7rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 51, 153, .2);
    transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 51, 153, .3);
}

/* .btn-login dipakai apa adanya di nav & footer; hero butuh sedikit penyesuaian layout saja */
.nav-links .btn-login::after { display: none; }

.btn-secondary-hero {
    padding: .6rem 1.2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: var(--radius-sm);
    transition: color .2s ease, transform .2s ease;
}

.btn-secondary-hero:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* ==================== HERO ==================== */
.hero {
    padding: 8rem 8% 7rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fef3ec 100%);
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 51, 153, .04), rgba(255, 102, 0, .04));
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 45%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(15deg); }
}

.hero-text {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.hero-text .badge {
    background: var(--primary-tint);
    color: var(--primary);
    padding: .5rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid #c7dcff;
    box-shadow: var(--shadow-sm);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-slider {
    flex: .8;
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    background: #cbd5e1;
    z-index: 2;
    transition: transform .4s var(--ease-bounce), box-shadow .4s ease;
}

.hero-slider:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 30px 50px rgba(0, 51, 153, .12);
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.645, .045, .355, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hero-slider:hover .slide {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(.9);
    background: rgba(255, 255, 255, .9);
    color: var(--primary);
    border: none;
    padding: .8rem;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: all .3s ease;
}

.hero-slider:hover .slider-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.slider-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.slider-btn.prev { left: 1.2rem; }
.slider-btn.next { right: 1.2rem; }

.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
    z-index: 10;
    background: rgba(15, 23, 42, .2);
    padding: .4rem .8rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .6);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease-bounce);
}

.dot.active, .dot:hover {
    background: var(--secondary);
    width: 22px;
    border-radius: 5px;
}

/* ==================== DATA PUBLIK (signature section) ==================== */
#statistik {
    position: relative;
    padding: 4.5rem 8%;
    background: radial-gradient(ellipse at top left, var(--navy-2) 0%, var(--navy-1) 60%);
    color: white;
    overflow: hidden;
}

/* Motif kepulauan: gugusan titik menyebar samar — merepresentasikan
   sebaran pulau-pulau Halmahera Selatan, bukan sekadar dekorasi. */
#statistik::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 20%, rgba(255,255,255,.05) 0 3px, transparent 4px),
        radial-gradient(circle at 18% 65%, rgba(255,255,255,.05) 0 5px, transparent 6px),
        radial-gradient(circle at 32% 15%, rgba(255,255,255,.04) 0 2px, transparent 3px),
        radial-gradient(circle at 47% 55%, rgba(255,102,0,.10) 0 6px, transparent 7px),
        radial-gradient(circle at 63% 25%, rgba(255,255,255,.05) 0 4px, transparent 5px),
        radial-gradient(circle at 78% 70%, rgba(255,255,255,.04) 0 3px, transparent 4px),
        radial-gradient(circle at 90% 30%, rgba(255,255,255,.05) 0 5px, transparent 6px),
        radial-gradient(circle at 96% 80%, rgba(255,102,0,.08) 0 4px, transparent 5px);
    pointer-events: none;
}

.stats-header {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.stats-header .badge {
    background: rgba(255, 255, 255, .1);
    color: #ffd9b3;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.stats-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.stats-header p {
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.stat-item:first-child {
    border-left: none;
}

.stat-value {
    font-size: 2.6rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: white;
    line-height: 1.1;
    margin-bottom: .5rem;
}

.stat-value .unit {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-left: .2rem;
}

.stat-label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
}

.stats-note {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 2.75rem auto 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.stats-note strong {
    color: rgba(255, 255, 255, .85);
}

@media (max-width: 700px) {
    .stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 1.75rem;
    }
    .stat-item:first-child {
        border-top: none;
        padding-top: 1.5rem;
    }
}

/* ==================== SECTION BASE ==================== */
.section {
    padding: 5.5rem 8%;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
}

.link-selengkapnya {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--secondary);
    margin-left: 4px;
    transition: color .2s, border-color .2s;
}

.link-selengkapnya:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.angka-bg {
    position: absolute;
    right: -10px;
    top: -15px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(15, 23, 42, .04);
    transition: all .4s ease;
    user-select: none;
    pointer-events: none;
}

/* ==================== KARTU DASAR ==================== */
.card-base-style {
    background: white;
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .8);
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease-bounce), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-base-style:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-base-style:hover .angka-bg {
    transform: scale(1.15) rotate(-10deg);
    color: rgba(15, 23, 42, .07);
}

/* TENTANG */
#tentang {
    background-color: #f8faff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23003399' fill-opacity='0.03'%3E%3Cpath fill-rule='evenodd' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 9c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm1 57c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm43-33c0 1.657-1.343 3-3 3s-3-1.343-3-3 1.343-3 3-3 3 1.343 3 3zM25 44c0 4.418-3.582 8-8 8s-8-3.582-8-8 3.582-8 8-8 8 3.582 8 8zm40-34c0 1.657-1.343 3-3 3s-3-1.343-3-3 1.343-3 3-3 3 1.343 3 3zM44 26c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4zm-7 42c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4zm31 2c0 3.314-2.686 6-6 6s-6-3.314-6-6 2.686-6 6-6 6 3.314 6 6zm-42 1c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zm35-41c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2z'/%3E%3C/g%3E%3C/svg%3E");
    border-top: 1px solid rgba(0, 51, 153, .05);
    border-bottom: 1px solid rgba(0, 51, 153, .05);
}

.tentang-card-1 { border-top: 5px solid var(--primary); --shadow-color: rgba(0, 51, 153, .15); }
.tentang-card-2 { border-top: 5px solid var(--secondary); --shadow-color: rgba(255, 102, 0, .15); }
.tentang-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
.tentang-card p { color: var(--gray); font-size: .95rem; }

/* FITUR */
#fitur { background-color: #f1f5f9; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.feature-card-1 { border-top: 5px solid #0284c7; }
.feature-card-2 { border-top: 5px solid #22c55e; }
.feature-card-3 { border-top: 5px solid #a855f7; }

.feature-card .feature-icon-bg {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 3.5rem;
    opacity: .08;
    transition: all .4s ease;
    user-select: none;
    pointer-events: none;
}

.feature-card:hover .feature-icon-bg {
    transform: scale(1.3) rotate(15deg);
    opacity: .15;
}

.feature-card h3 { font-size: 1.25rem; margin-bottom: .75rem; color: var(--dark); font-weight: 700; padding-right: 2rem; }
.feature-card p { color: var(--gray); font-size: .95rem; }

/* AKSI KONVERGENSI */
#konvergensi { background-color: #f8fafc; padding-top: 8rem; }
.wave-container { position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-container svg { position: relative; display: block; width: calc(130% + 1.3px); height: 70px; }
.wave-container .shape-fill { fill: #f1f5f9; }

.konvergensi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }

.aksi-badge {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 1.2rem;
    width: max-content;
    color: white;
    box-shadow: var(--shadow-sm);
}

.konvergensi-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; line-height: 1.3; }
.konvergensi-card p { color: #576574; font-size: .9rem; }

.card-aksi-1 { border-top: 5px solid #3b82f6; } .card-aksi-1 .aksi-badge { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.card-aksi-2 { border-top: 5px solid #10b981; } .card-aksi-2 .aksi-badge { background: linear-gradient(135deg, #10b981, #047857); }
.card-aksi-3 { border-top: 5px solid #f59e0b; } .card-aksi-3 .aksi-badge { background: linear-gradient(135deg, #f59e0b, #b45309); }
.card-aksi-4 { border-top: 5px solid #ec4899; } .card-aksi-4 .aksi-badge { background: linear-gradient(135deg, #ec4899, #be185d); }
.card-aksi-5 { border-top: 5px solid #8b5cf6; } .card-aksi-5 .aksi-badge { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.card-aksi-6 { border-top: 5px solid #06b6d4; } .card-aksi-6 .aksi-badge { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.card-aksi-7 { border-top: 5px solid #ff6600; } .card-aksi-7 .aksi-badge { background: linear-gradient(135deg, #ff6600, #cc5200); }
.card-aksi-8 { border-top: 5px solid #64748b; } .card-aksi-8 .aksi-badge { background: linear-gradient(135deg, #64748b, #475569); }

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-box {
    background: white; width: 90%; max-width: 650px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    overflow: hidden; transform: translateY(-20px); transition: transform .3s ease;
}
.modal-overlay.show .modal-box { transform: translateY(0); }
.modal-header { background: #f8fafc; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { color: var(--primary); font-size: 1.2rem; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 1.5rem; font-weight: bold; color: var(--gray); cursor: pointer; padding: 4px 8px; line-height: 1; border-radius: 4px; transition: all .2s; }
.modal-close:hover { background: #ef4444; color: white; }
.modal-body { padding: 1.5rem; max-height: 70vh; overflow-y: auto; }
.modal-body h4 { color: var(--dark); margin: 1rem 0 .5rem; font-size: 1rem; }
.modal-body p { color: var(--gray); font-size: .95rem; margin-bottom: 1rem; }

/* ==================== KONTAK ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    padding: .5rem;
    background: var(--primary-tint);
    border-radius: var(--radius-sm);
}

.info-item h4 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.info-item p { margin: 0; color: var(--gray); font-size: .95rem; }

/* ==================== FOOTER ==================== */
footer { background: var(--primary-dark); color: white; padding: 4rem 8% 2rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-bottom: 1px solid rgba(255, 255, 255, .1); padding-bottom: 3rem; margin-bottom: 2rem; }
.footer-info { flex: 1; max-width: 650px; }
.footer-info h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.footer-info p { color: #cbd5e1; }
.footer-btn-container { flex-shrink: 0; }
.copyright { text-align: center; color: #94a3b8; font-size: .85rem; }

/* ==================== RESPONSIF ==================== */
@media (max-width: 1024px) {
    nav { padding: 1rem 5%; }
    .logo img { height: 44px; }
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, .1);
        z-index: 1000;
        transition: right .3s var(--ease);
    }

    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; font-size: 1.1rem; width: 100%; padding: .5rem 0; }
    .nav-links a::after { display: none; }

    .nav-links .btn-login {
        text-align: center;
        margin-top: 1rem;
        width: 100%;
        padding: .8rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        padding: 6rem 5% 4rem;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hero-buttons .btn-login,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-text h1 { font-size: 2.2rem; }
    .hero-slider { height: 260px; }
    .floating-shape { display: none; }

    .footer-grid { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding-bottom: 2rem; }
    .footer-btn-container { width: 100%; }
    .footer-btn-container .btn-login { display: flex; width: 100%; }

    .contact-wrapper { grid-template-columns: 1fr; }
}