/* ==========================================================================
   SaveMate Premium Style Sheet
   Includes: Dark/Light Mode, Glassmorphism, Micro-animations, Responsive Grid
   ========================================================================== */

/* ── 1. CSS Variables & Design Tokens ───────────────────────────────────── */
:root {
    /* Brand Colors */
    --brand-pink: #EC1C63;
    --brand-pink-glow: rgba(236, 28, 99, 0.4);
    --brand-orange: #FF5722;
    --brand-gradient: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-pink) 100%);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    /* Dark Theme Tokens (Default) */
    --bg-primary: #0A0A0C;
    --bg-secondary: #121216;
    --bg-card: #191920;
    --bg-card-hover: #22222B;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(255, 255, 255, 0.15);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(25, 25, 32, 0.75);
    --glass-blur: blur(20px);
}

/* Light Theme Overrides */
.light-theme {
    --bg-primary: #FAFAFC;
    --bg-secondary: #F1F3F6;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-glow: rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 16px 40px -12px rgba(99, 102, 241, 0.08), 0 8px 20px -6px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 12px 24px -8px rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(16px);
}

/* ── 2. Base Rules ──────────────────────────────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition-smooth);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color-glow);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-pink);
}

/* ── 3. Typography Styles ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ── 4. Main Header Navigation ───────────────────────────────────────────── */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--brand-pink);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--brand-pink);
}

.desktop-nav a.nav-secondary {
    border: 1px solid var(--border-color-glow);
    padding: 6px 14px;
    border-radius: 20px;
}

.desktop-nav a.nav-secondary:hover {
    border-color: var(--brand-pink);
    background-color: rgba(236, 28, 99, 0.05);
}

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

/* Theme Toggle Button styling */
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-quick);
}

.theme-toggle-btn:hover {
    border-color: var(--brand-pink);
    box-shadow: 0 0 10px rgba(236, 28, 99, 0.15);
}

.theme-toggle-btn span {
    position: absolute;
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-theme .icon-sun { transform: translateY(-40px); }
.dark-theme .icon-moon { transform: translateY(0); }
.light-theme .icon-sun { transform: translateY(0); }
.light-theme .icon-moon { transform: translateY(40px); }

.btn-download-nav {
    background: var(--brand-gradient);
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 22px;
    box-shadow: 0 4px 15px var(--brand-pink-glow);
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 28, 99, 0.5);
}

/* Hamburger mobile menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-quick);
}

/* Hamburger active transformation */
.mobile-menu-toggle.menu-active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-toggle.menu-active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.menu-active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile dropdown panel */
.mobile-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-nav-menu.menu-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-download-mobile {
    background: var(--brand-gradient);
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
}

/* ── 5. Hero Section ─────────────────────────────────────────────────────── */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
}

.tag-premium {
    background-color: rgba(236, 28, 99, 0.08);
    border: 1px solid rgba(236, 28, 99, 0.2);
    color: var(--brand-pink);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background: var(--brand-gradient);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px var(--brand-pink-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 28, 99, 0.55);
}

.btn-secondary {
    border: 1px solid var(--border-color-glow);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--brand-pink);
    background-color: rgba(236, 28, 99, 0.05);
}

.icon-svg {
    width: 20px;
    height: 20px;
}

.hero-platforms-bar {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.platform-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.platform-icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-badge {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot-insta { background-color: #E1306C; }
.dot-fb { background-color: #1877F2; }
.dot-tiktok { background-color: #000000; }
.dot-pinterest { background-color: #BD081C; }

/* Hero Visual & Glowing Orbs */
.hero-visual-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.glowing-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--brand-pink) 0%, rgba(236, 28, 99, 0) 70%);
    opacity: 0.15;
    z-index: 1;
    filter: blur(40px);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.2); opacity: 0.25; }
}

.mockup-container {
    position: relative;
    z-index: 2;
    transform: rotate(5deg);
    animation: float 6s infinite ease-in-out;
}

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

/* Phone Mockup Frame */
.phone-mockup {
    width: 250px;
    height: 500px;
    background-color: #111115;
    border: 8px solid #22222B;
    border-radius: 36px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background-color: #22222B;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
}

.phone-screen-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Simulated Android UI components */
.app-screen {
    width: 100%;
    height: 100%;
    background-color: #0D0D0D;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    font-size: 10px;
}

.app-screen .app-header {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-hamburger {
    width: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.app-hamburger span {
    height: 1.5px;
    background-color: #FFFFFF;
    width: 100%;
}

.app-screen .app-header .app-logo {
    font-weight: 800;
    font-size: 13px;
    margin-left: 10px;
}
.app-screen .app-header .app-logo span { color: var(--brand-pink); }

.app-body {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-title-area {
    text-align: center;
    margin-top: 10px;
}
.app-title-area .title {
    font-size: 20px;
    font-weight: 900;
}
.app-title-area .title span { color: var(--brand-pink); }
.app-title-area .subtitle {
    font-size: 9px;
    color: #888888;
}

.app-input-box {
    background-color: #1A1A1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
}
.input-placeholder {
    color: #666666;
    flex: 1;
}
.input-paste-btn { color: var(--brand-pink); font-size: 12px; }

.app-action-btn {
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-weight: 700;
    height: 36px;
    border-radius: 18px;
    font-size: 10px;
}

.app-platforms-title {
    font-weight: 700;
    font-size: 10px;
    color: #888888;
}

.app-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.app-plat-item {
    background-color: #1A1A1E;
    border-radius: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
}
.plat-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
.insta-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.fb-bg { background-color: #1877F2; }
.tiktok-bg { background-color: #000000; }
.pin-bg { background-color: #BD081C; }

.app-nav-bar {
    height: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 16px;
}
.nav-item { font-size: 16px; color: #666666; }
.nav-item.active { color: var(--brand-pink); }

/* ── 6. Screenshots Section ────────────────────────────────────────────────── */
.screenshots-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.screenshots-slider-wrapper {
    overflow-x: auto;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
}

.screenshots-row-scroll {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 10px;
}

.screenshot-item {
    width: 250px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    text-align: center;
    flex-shrink: 0;
}

.screenshot-item:hover {
    transform: translateY(-8px);
    border-color: var(--brand-pink);
    box-shadow: var(--shadow-premium);
}

.screenshot-item img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    display: block;
}

.screenshot-caption {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── 7. Features Grid Section ────────────────────────────────────────────── */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-pink);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-icon-speed { background-color: rgba(255, 87, 34, 0.08); color: var(--brand-orange); }
.f-icon-clipboard { background-color: rgba(236, 28, 99, 0.08); color: var(--brand-pink); }
.f-icon-share { background-color: rgba(0, 184, 212, 0.08); color: #00B8D4; }
.f-icon-gallery { background-color: rgba(41, 182, 246, 0.08); color: #29B6F6; }
.f-icon-player { background-color: rgba(102, 187, 106, 0.08); color: #66BB6A; }
.f-icon-sort { background-color: rgba(251, 192, 45, 0.08); color: #FBC02D; }

.feature-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ── 8. Guide Section ────────────────────────────────────────────────────── */
.guide-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.guide-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.guide-step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* Connector line between steps */
.guide-step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 1px;
    border-top: 2px dashed var(--border-color-glow);
    z-index: 1;
}

.step-badge {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--brand-pink-glow);
    z-index: 2;
}

.guide-step-card h4 {
    font-size: 18px;
    font-weight: 700;
}

.guide-step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
}

/* ── 9. FAQ Accordion Section ────────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-support-box {
    margin-top: 30px;
    padding: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.faq-support-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.btn-support {
    background-color: rgba(236, 28, 99, 0.08);
    border: 1px dashed var(--brand-pink);
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    display: block;
    text-align: center;
    transition: var(--transition-quick);
}

.btn-support:hover {
    background-color: var(--brand-pink);
    color: #FFFFFF;
    border-style: solid;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-quick);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-arrow {
    font-size: 12px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
    border-top: 0 solid transparent;
}

/* Active FAQ toggle state */
.faq-item.faq-active {
    border-color: var(--brand-pink);
}

.faq-item.faq-active .faq-arrow {
    transform: rotate(180deg);
    color: var(--brand-pink);
}

.faq-item.faq-active .faq-panel {
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color);
    max-height: 200px; /* Large enough to fit text */
}

.faq-panel p {
    font-size: 14.5px;
    color: var(--text-secondary);
    padding-top: 14px;
}

/* ── 10. Download Banner ─────────────────────────────────────────────────── */
.download-banner-section {
    padding: 60px 0;
}

.banner-container {
    background: var(--brand-gradient);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--brand-pink-glow);
}

.banner-overlay-design {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.banner-text {
    z-index: 5;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner-text h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.banner-text p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 480px;
}

.banner-cta {
    z-index: 5;
}

.btn-banner-primary {
    background-color: #FFFFFF;
    color: #EC1C63 !important;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-banner-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background-color: #FAFAFC;
}

/* ── 11. Privacy & Subpages Specific Styling ──────────────────────────────── */
.subpage-body .main-header {
    position: relative;
}

.policy-main-content {
    padding: 60px 0 100px;
}

.policy-container {
    max-width: 900px;
}

.policy-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-card);
}

.policy-card h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.lead-text {
    font-size: 16px;
    color: var(--text-primary);
}

.policy-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 32px 0;
}

.policy-card section {
    margin-bottom: 32px;
}

.policy-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--brand-pink);
}

.policy-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.policy-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.policy-table th, .policy-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.policy-table th {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
}

.policy-table td code {
    background-color: var(--bg-secondary);
    color: var(--brand-pink);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

.contact-email {
    font-weight: 700;
    font-size: 16px;
}
.contact-email a { color: var(--brand-pink); }
.contact-email a:hover { text-decoration: underline; }

/* ── 12. Footer ──────────────────────────────────────────────────────────── */
.main-footer {
    background-color: #050507;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 80px;
    padding-bottom: 40px;
    color: #94A3B8;
}

.main-footer h4 {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-tagline {
    font-size: 14px;
    max-width: 280px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
}
.footer-col a:hover {
    color: var(--brand-pink);
}

.support-availability {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
}

.disclaimer {
    opacity: 0.6;
    line-height: 1.5;
}

/* ── 13. Responsive Breakpoints ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text-content {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-platforms-bar {
        justify-content: center;
    }
    
    .simulator-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-steps-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guide-step-card:not(:last-child)::after {
        display: none;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-intro {
        position: relative;
        top: 0;
    }
    
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .policy-card {
        padding: 24px;
    }
    
    .policy-card h1 {
        font-size: 30px;
    }
}
