/* ============================================
   IPPO Bot - Landing Page Styles (landing.css)
   ============================================ */

/* ============================================
   Gradient Text
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, #FFB347 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--bg-navbar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 1001;
}

.navbar-logo:hover {
    color: var(--text-primary);
}

.navbar-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar-links a:hover {
    color: var(--text-primary);
}

.navbar-links a:hover::after {
    width: 100%;
}

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

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    z-index: 1001;
}

.navbar-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.navbar-mobile.active {
    opacity: 1;
    pointer-events: auto;
}

.navbar-mobile a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.navbar-mobile a:hover {
    color: var(--orange);
}

.navbar-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--navbar-height) + 40px) 24px 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 32px;
    filter: drop-shadow(0 0 40px var(--accent-glow)) drop-shadow(0 0 80px rgba(255, 140, 0, 0.15));
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.typing-text {
    color: var(--orange);
    position: relative;
}

.typing-text::after {
    content: '|';
    color: var(--orange);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stat span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin: 16px 0;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    background: var(--bg-secondary);
}

.feature-block {
    display: flex;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
    align-items: center;
}

.feature-block--reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 0;
}

.feature-text {
    flex: 1;
    min-width: 0;
}

.feature-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 20px;
}

.feature-text h2 {
    font-size: 2rem;
    margin: 16px 0;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='%23FF8C00' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Feature Mockup - Discord Embed Simulation */
.feature-mockup {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mockup-embed {
    background: #2b2d31;
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

.mockup-embed-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-hover));
    opacity: 0;
}

.mockup-embed-content {
    padding: 16px;
}

.mockup-embed-icon {
    margin-bottom: 8px;
}

.mockup-embed-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.mockup-embed-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mockup-highlight {
    color: var(--orange);
    font-weight: 600;
}

.mockup-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.mockup-embed-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot--green { background: #57F287; }
.mockup-dot--orange { background: var(--orange); }
.mockup-dot--red { background: #ED4245; }

.mockup-theme-preview {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-theme-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mockup-theme-dot:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Commands Section
   ============================================ */

.commands-section {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 80px 0 100px;
}

.commands-category {
    margin-bottom: 48px;
}

.commands-category:last-child {
    margin-bottom: 0;
}

.commands-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.command-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.command-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.command-card--premium::before {
    content: 'PRO';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(255, 140, 0, 0.15);
    color: var(--orange);
    padding: 2px 6px;
    border-radius: 4px;
}

.command-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
}

.command-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
}

.command-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    padding: 100px 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card--premium {
    border-color: var(--orange);
    box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card--premium:hover {
    border-color: var(--orange);
    box-shadow: 0 0 60px var(--accent-glow-strong), 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-card--premium .pricing-amount {
    color: var(--orange);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-feature--highlight {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-section {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 80px 0 100px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.08);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 16px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    flex-shrink: 0;
}

/* ============================================
   Use Cases Section
   ============================================ */

.use-cases-section {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    padding: 100px 0;
}

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

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.use-case-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.use-case-card--highlight {
    border-color: var(--orange);
    box-shadow: 0 0 30px var(--accent-glow);
}

.use-case-card--highlight:hover {
    border-color: var(--orange);
    box-shadow: 0 0 50px var(--accent-glow-strong), 0 12px 40px rgba(0, 0, 0, 0.2);
}

.use-case-popular {
    position: absolute;
    top: -10px;
    right: 24px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 12px;
}

.use-case-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.use-case-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.use-case-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   Mockup Variants
   ============================================ */

/* Terminal Mockup */
.mockup-terminal {
    background: #1a1a24;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.mockup-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.mockup-terminal-line {
    color: var(--text-secondary);
}

.mockup-terminal-output {
    color: var(--text-muted);
}

.mockup-terminal-done {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-cmd {
    color: var(--orange);
    font-weight: 700;
}

.mockup-success {
    color: #57F287;
    font-weight: 700;
    margin-right: 4px;
}

/* Embed Mockup Enhancements */
.mockup-embed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mockup-embed-header .mockup-embed-title {
    margin-bottom: 0;
}

.mockup-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 140, 0, 0.15);
    color: var(--orange);
    padding: 2px 8px;
    border-radius: 4px;
}

.mockup-rating {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.8rem;
}

.mockup-embed-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.mockup-btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: default;
}

.mockup-btn--primary {
    background: var(--orange);
    color: #fff;
}

.mockup-btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.mockup-btn--success {
    background: rgba(87, 242, 135, 0.15);
    color: #57F287;
}

.mockup-btn--danger {
    background: rgba(237, 66, 69, 0.15);
    color: #ED4245;
}

/* Chat Mockup */
.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.mockup-chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.mockup-chat-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.mockup-chat-avatar--user {
    background: #5865F2;
    color: #fff;
}

.mockup-chat-avatar--bot {
    background: rgba(255, 140, 0, 0.15);
    overflow: hidden;
}

.mockup-chat-avatar--bot img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.mockup-chat-bubble {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mockup-chat-bubble--bot {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 8px 8px 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-chat-bubble code {
    background: rgba(255, 255, 255, 0.08);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.mockup-chat-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

/* Theme Grid Mockup */
.mockup-theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-theme-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.mockup-theme-card:hover {
    border-color: var(--border-hover);
}

.mockup-theme-card--active {
    border-color: var(--orange);
    box-shadow: 0 0 12px var(--accent-glow);
}

.mockup-theme-preview-bar {
    height: 32px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.mockup-theme-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-theme-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mini theme grid: 5 items, first row 3, second row 2 centered */
.mockup-theme-grid .mockup-theme-card:nth-child(4),
.mockup-theme-grid .mockup-theme-card:nth-child(5) {
    grid-column: span 1;
}

/* Dashboard Mockup */
.mockup-dashboard {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    min-height: 200px;
}

.mockup-dashboard-sidebar {
    width: 140px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border);
    padding: 12px 0;
    flex-shrink: 0;
}

.mockup-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-dashboard-logo-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--orange);
}

.mockup-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 6px;
}

.mockup-dashboard-nav-item {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 6px 8px;
    border-radius: 4px;
    cursor: default;
}

.mockup-dashboard-nav-item.active {
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
    font-weight: 600;
}

.mockup-dashboard-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-dashboard-stat-row {
    display: flex;
    gap: 12px;
}

.mockup-dashboard-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.mockup-dashboard-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
}

.mockup-dashboard-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
}

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

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (max-width: 1024px) {
    .feature-block {
        gap: 48px;
        padding: 64px 24px;
    }

    .commands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .mockup-theme-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 768px) {
    /* Navbar */
    .navbar-links {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    .navbar-mobile {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: calc(var(--navbar-height) + 20px) 16px 100px;
        min-height: auto;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* How it works */
    .how-section {
        padding: 48px 0 64px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .step-card {
        padding: 24px 16px;
    }

    /* Features */
    .feature-block {
        flex-direction: column;
        gap: 32px;
        padding: 48px 16px;
    }

    .feature-block--reverse {
        flex-direction: column;
    }

    .feature-text h2 {
        font-size: 1.5rem;
    }

    /* Use cases */
    .use-cases-section {
        padding: 64px 0;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Commands */
    .commands-section {
        padding: 48px 0 64px;
    }

    .commands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .command-card {
        padding: 16px;
    }

    /* Pricing */
    .pricing-section {
        padding: 64px 0;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    /* CTA */
    .cta-section {
        padding: 64px 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Dashboard mockup */
    .mockup-dashboard-sidebar {
        width: 100px;
    }

    .mockup-dashboard-stat-row {
        flex-direction: column;
    }

    /* Theme grid */
    .mockup-theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .commands-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .mockup-dashboard-sidebar {
        display: none;
    }

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