/* ==========================================================================
   SnipPin Premium Stylesheet
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --bg-dark: #070913;
    --bg-medium: #0f132a;
    --bg-card: rgba(13, 17, 39, 0.6);
    --bg-card-hover: rgba(22, 28, 61, 0.8);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-rgb: 99, 102, 241;
    --secondary: #06b6d4;
    --secondary-hover: #0891b2;
    --secondary-rgb: 6, 182, 212;
    --accent: #d946ef;
    --text-white: #ffffff;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(99, 102, 241, 0.4);
    
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.25);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

section {
    padding: 6rem 0;
    position: relative;
}

/* --- Glow Background --- */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: pulse 12s ease-in-out infinite alternate;
}

.glow-circle-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-circle-2 {
    bottom: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -6s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.2) translate(5%, 5%); opacity: 0.2; }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5), 0 0 30px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.05rem;
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(7, 9, 19, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition-smooth);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
}

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

.nav-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 9rem;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-meta i {
    color: var(--secondary);
}

.meta-divider {
    color: rgba(255, 255, 255, 0.1);
}

/* Hero Mockup Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

.mockup-img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
}

.badge-snip {
    top: 15%;
    left: -15%;
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
    color: #22d3ee;
}

.badge-pin {
    bottom: 15%;
    right: -12%;
    background: rgba(217, 70, 239, 0.2);
    border-color: rgba(217, 70, 239, 0.3);
    color: #f472b6;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Features Section --- */
.features-section {
    background-color: rgba(10, 13, 30, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.15);
}

.card-icon {
    width: 54px;
    height: 54px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: var(--transition-smooth);
}

.feature-card:hover .card-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* --- Detail Sections --- */
.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.detail-visual {
    display: flex;
    justify-content: center;
}

.detail-img-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.detail-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.detail-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.detail-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-list li i {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-top: 0.25rem;
}

.detail-list li strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.15rem;
}

.detail-list li div {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Alt Layout (Image on right) */
.alt-layout .detail-container > :first-child {
    order: 2;
}
.alt-layout .detail-container > :last-child {
    order: 1;
}

/* --- Guide Section --- */
.guide-section {
    background-color: rgba(10, 13, 30, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.guide-step-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
}

.guide-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.guide-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Keyboard styling */
kbd {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(180deg, #2e344e 0%, #171b2d 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid rgba(0,0,0,0.6);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.guide-hotkey {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.03);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.guide-hotkey span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.guide-hotkey-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guide-hotkey-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.guide-hotkey-row span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Why & Stats Section --- */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.why-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.why-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point {
    display: flex;
    gap: 1.25rem;
}

.why-point i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 0.25rem;
    width: 25px;
    text-align: center;
}

.why-point h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.why-point p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats */
.why-stats {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.07) 0%, rgba(6, 182, 212, 0.07) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: rgba(10, 13, 30, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(22, 28, 61, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
}

.cta-container {
    display: flex;
    justify-content: center;
}

.cta-card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 5rem 4rem;
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent), 
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.12), transparent),
                #0f1228;
    border: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.cta-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.cta-title {
    font-size: 2.6rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cta-info-divider {
    color: rgba(255, 255, 255, 0.1);
}

/* --- Footer --- */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background-color: #05060b;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-white);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .alt-layout .detail-container > :first-child {
        order: 1;
    }
    .alt-layout .detail-container > :last-child {
        order: 2;
    }
    
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-stats {
        width: 100%;
    }
    
    .stats-card {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        padding: 2rem;
    }
    
    .stat-item {
        flex: 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(7, 9, 19, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 3rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-card {
        padding: 4rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .badge-snip {
        left: -5%;
        top: 10%;
    }
    
    .badge-pin {
        right: -5%;
        bottom: 10%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}
