/* ==============================================================================
   VẠN KIẾP HÙNG CA — HÀO KHÍ ĐÔNG A (LANDING PAGE STYLES V3)
   Phong cách Kiếm Hiệp Thủy Mặc Đại Việt · Hoàng Kim Khí Phách
   ============================================================================== */

:root {
    --bg-primary: #060913;
    --bg-secondary: #0c1222;
    --bg-card: rgba(15, 23, 42, 0.75);
    --border-gold: #b45309;
    --border-gold-light: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
    --gold-text: #fef08a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --red-crimson: #b91c1c;
    --red-gradient: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #991b1b 100%);
    --font-heading: 'Cinzel', 'Charm', serif;
    --font-body: 'Be Vietnam Pro', sans-serif;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(180, 83, 9, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 40%, rgba(30, 58, 138, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(185, 28, 28, 0.1) 0%, transparent 40%);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* HIỆU ỨNG KHÓI SƯƠNG THỦY MẶC NỀN */
.bg-mist-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.04), transparent 70%);
}

/* ==============================================================================
   1. SITE HEADER
   ============================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 9, 19, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-gold-light);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    object-fit: cover;
}

.brand-texts {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover {
    color: var(--border-gold-light);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.25s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-head-apk {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold-text);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-head-apk:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--border-gold-light);
    transform: translateY(-1px);
}

.btn-head-play {
    background: var(--red-gradient);
    border: 1px solid rgba(254, 202, 202, 0.4);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.2s ease;
}

.btn-head-play:hover {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    transform: translateY(-2px);
}

/* ==============================================================================
   2. HERO SECTION
   ============================================================================== */
.hero-section {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #fbbf24;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.badge-sparkle {
    color: #f59e0b;
    font-size: 0.9rem;
    animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.title-accent {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f59e0b;
    text-transform: uppercase;
}

.title-main {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #f59e0b 80%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.3));
}

.hero-slogan {
    font-family: 'Charm', cursive, serif;
    font-size: 1.45rem;
    color: #fde047;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-cta-main {
    background: var(--red-gradient);
    border: 2px solid #fecaca;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.7);
}

.btn-cta-apk {
    background: rgba(15, 23, 42, 0.85);
    border: 2px solid var(--border-gold-light);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-cta-apk:hover {
    background: rgba(245, 158, 11, 0.18);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

.cta-icon {
    font-size: 2rem;
}

.cta-text-group {
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.cta-subtitle {
    font-size: 0.78rem;
    color: #f1f5f9;
    opacity: 0.85;
}

.hero-features-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.fchip .check {
    color: #4ade80;
    font-weight: 800;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-art-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 158, 11, 0.15);
}

.hero-art-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.hero-art-frame:hover .hero-art-img {
    transform: scale(1.06);
}

.hero-art-aura {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 9, 19, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.hero-server-status-pill {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.pulse-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* ==============================================================================
   SECTION HEADERS CHUNG
   ============================================================================== */
.section-title-wrap {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 3px;
    color: #f59e0b;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==============================================================================
   3. SECTS SECTION (LỤC ĐẠI VÕ PHÁI)
   ============================================================================== */
.sects-section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    background: rgba(12, 18, 34, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sect-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.sect-tab-btn {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.sect-tab-btn:hover {
    border-color: var(--border-gold-light);
    color: #fff;
    transform: translateY(-2px);
}

.sect-tab-btn.active {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.4), rgba(15, 23, 42, 0.9));
    border-color: var(--border-gold-light);
    color: #fef08a;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.sect-badge-ele {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ele-metal { background: #ca8a04; color: #fff; }
.ele-wood  { background: #16a34a; color: #fff; }
.ele-water { background: #0284c7; color: #fff; }
.ele-fire  { background: #dc2626; color: #fff; }
.ele-earth { background: #854d0e; color: #fff; }
.ele-wind  { background: #7c3aed; color: #fff; }

.sect-display-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.sect-media-col {
    position: relative;
    min-height: 440px;
}

.sect-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.sect-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sect-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(15, 23, 42, 0.95) 100%);
    pointer-events: none;
}

.sect-info-col {
    padding: 40px 40px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sect-header-meta {
    margin-bottom: 14px;
}

.ele-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sect-big-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fef08a;
    letter-spacing: 1px;
}

.sect-narrative {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sect-attributes-box {
    background: rgba(6, 9, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

.attr-box-title {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.attr-row {
    display: grid;
    grid-template-columns: 130px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.88rem;
}

.attr-name {
    color: #e2e8f0;
}

.attr-bar-track {
    background: #1e293b;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.attr-bar-fill {
    background: var(--gold-gradient);
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.attr-val {
    font-weight: 800;
    color: #fbbf24;
    text-align: right;
}

.sect-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.92rem;
    color: #cbd5e1;
}

.sect-features-list strong {
    color: #fef08a;
}

.btn-sect-select {
    background: var(--gold-gradient);
    color: #0c0a09;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.2s ease;
}

.btn-sect-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

/* ==============================================================================
   4. FEATURES SECTION (TÍNH NĂNG ĐỘC BẢN)
   ============================================================================== */
.features-section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.fcard-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.fcard-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fef08a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.fcard-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==============================================================================
   5. GALLERY SECTION (THƯ VIỆN IN-GAME)
   ============================================================================== */
.gallery-section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    background: rgba(12, 18, 34, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    aspect-ratio: 16 / 10;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(6, 9, 19, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
}

.gallery-caption h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fef08a;
    margin-bottom: 2px;
}

.gallery-caption span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ==============================================================================
   6. GUIDE SECTION (HƯỚNG DẪN TRẢI NGHIỆM)
   ============================================================================== */
.guide-section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.guide-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 36px 28px;
    backdrop-filter: blur(8px);
}

.guide-card.highlight-card {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.1);
}

.gcard-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.gcard-icon {
    font-size: 2rem;
}

.gcard-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fef08a;
    letter-spacing: 0.5px;
}

.guide-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.guide-steps li strong {
    color: #fff;
}

kbd {
    background: #1e293b;
    border: 1px solid #475569;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fef08a;
}

/* ==============================================================================
   7. FOOTER (HOÀN TOÀN ẨN ADMIN)
   ============================================================================== */
.site-footer {
    position: relative;
    z-index: 1;
    background: #04060c;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding-top: 60px;
    color: #94a3b8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-gold-light);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: #fef08a;
}

.footer-sub {
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: #64748b;
}

.footer-motto {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 420px;
}

.footer-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.server-pill {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: #e2e8f0;
}

.footer-nav h4, .footer-tech h4 {
    font-size: 0.95rem;
    color: #fef08a;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #f59e0b;
}

.footer-tech p {
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-tech strong {
    color: #e2e8f0;
}

.footer-bottom {
    background: #020307;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
}

/* ==============================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-headline {
        align-items: center;
    }

    .hero-slogan, .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-features-chips {
        justify-content: center;
    }

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

    .sect-info-col {
        padding: 24px;
    }

    .features-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .title-main {
        font-size: 2.6rem;
    }

    .features-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .guide-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-main, .btn-cta-apk {
        width: 100%;
        justify-content: center;
    }
}
