@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0b0d10;
    --bg-card: #14181e;
    --bg-card-hover: #1c222a;
    --bg-navbar: rgba(11, 13, 16, 0.85);
    
    --brand-yellow: #f5c84b;
    --brand-yellow-hover: #e5b83b;
    --brand-teal: #2e96ad;
    --brand-teal-hover: #248196;
    
    --text-primary: #ffffff;
    --text-secondary: #9aa5b5;
    --text-muted: #5e6b7e;
    
    --color-success: #10b981;
    --color-error: #ef4444;
    
    --border-color: #232c37;
    --border-glow: rgba(245, 200, 75, 0.15);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow-yellow: 0 0 20px rgba(245, 200, 75, 0.3);
    --shadow-glow-teal: 0 0 20px rgba(46, 150, 173, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-teal);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--brand-yellow);
    color: #000000;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-yellow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-teal);
}

.btn-teal {
    background-color: var(--brand-teal);
    color: var(--text-primary);
}

.btn-teal:hover {
    background-color: var(--brand-teal-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-teal);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.nav-logo img {
    height: 40px;
    display: block;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
}

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

.nav-btn {
    padding: 10px 20px;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background effects */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 150, 173, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 200, 75, 0.08) 0%, transparent 70%);
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 200, 75, 0.1);
    border: 1px solid rgba(245, 200, 75, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-yellow);
    display: inline-block;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--brand-yellow);
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats Strip */
.stats-strip {
    background-color: rgba(20, 24, 30, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: rgba(11, 13, 16, 0.5);
    position: relative;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--brand-teal);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-yellow));
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 150, 173, 0.4);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(46, 150, 173, 0.1);
    color: var(--brand-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(46, 150, 173, 0.2);
}

.feature-card:nth-child(even) .feature-icon {
    background-color: rgba(245, 200, 75, 0.1);
    color: var(--brand-yellow);
    border-color: rgba(245, 200, 75, 0.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Custom Interactive Show-case Area */
.showcase-section {
    padding: 100px 0;
    background-color: #07090b;
    border-top: 1px solid var(--border-color);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showcase-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-tab {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.showcase-tab:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.showcase-tab.active {
    border-color: var(--brand-yellow);
    background-color: rgba(20, 24, 30, 0.8);
    box-shadow: 0 0 15px rgba(245, 200, 75, 0.08);
}

.showcase-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--brand-yellow);
}

.showcase-tab h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-tab h3 span.num {
    color: var(--brand-yellow);
    font-size: 14px;
    background-color: rgba(245, 200, 75, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
}

.showcase-tab p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Phone Simulator Device Container */
.simulator-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background-color: #010101;
    border: 10px solid #1c222b;
    border-radius: 44px;
    box-shadow: var(--shadow-lg), 0 0 0 2px #323d4a, 0 15px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dynamic Island */
.phone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background-color: #000;
    border-radius: 12px;
    z-index: 10;
}

/* Phone Speaker and camera indicators */
.phone-island::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #1a1a1a;
    border-radius: 50%;
}
.phone-island::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 9px;
    width: 35px;
    height: 5px;
    background-color: #0c0c0c;
    border-radius: 10px;
}

/* Simulator Screen */
.phone-screen {
    flex: 1;
    background-color: #0c0e12;
    padding: 38px 12px 64px 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    font-size: 12px;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* Phone UI Styles */
.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.phone-header img {
    height: 20px;
}

.phone-user-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 10px;
}

/* Interactive phone screen switcher container */
.screen-content {
    flex: 1;
    display: none;
    flex-direction: column;
    animation: fadeScreen 0.4s ease forwards;
}

.screen-content.active {
    display: flex;
}

@keyframes fadeScreen {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Screen 1: Home CSS UI */
.phone-banner {
    background: linear-gradient(135deg, #181d26, #232c3a);
    border: 1px solid rgba(245, 200, 75, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.phone-banner h4 {
    font-family: var(--font-heading);
    color: var(--brand-yellow);
    font-size: 11px;
    margin-bottom: 4px;
}

.phone-banner p {
    color: var(--text-secondary);
    font-size: 10px;
    line-height: 1.3;
}

.phone-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.phone-filter {
    flex: 1;
    padding: 6px;
    text-align: center;
    border-radius: 8px;
    background-color: #14181f;
    border: 1px solid var(--border-color);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.phone-filter.active {
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
    background-color: rgba(245, 200, 75, 0.05);
}

.phone-section-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.phone-section-title a {
    color: var(--brand-teal);
    text-decoration: none;
    font-size: 9px;
}

.phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.phone-card {
    background-color: #14181f;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.phone-card img.prod-img {
    height: 50px;
    margin: 4px auto;
    display: block;
    object-fit: contain;
}

.phone-card h5 {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.phone-card-price {
    font-weight: 700;
    color: var(--brand-yellow);
    font-size: 9px;
}

.phone-card-change {
    font-size: 8px;
    color: var(--color-success);
}

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trader-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #14181f;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.trader-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trader-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3b82f6;
    color: white;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trader-name {
    font-size: 9px;
    font-weight: 600;
}

.trader-rating {
    font-size: 9px;
    color: var(--brand-yellow);
}

/* Screen 2: Search UI */
.phone-search-bar {
    background-color: #14181f;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.phone-search-bar span {
    font-size: 9px;
}

.detail-view {
    background-color: #14181f;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    flex: 1;
}

.detail-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-img {
    width: 45px;
    height: 60px;
    background-color: #1e2530;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-teal);
    border: 1px solid rgba(46, 150, 173, 0.2);
}

.detail-title h4 {
    font-size: 11px;
    margin-bottom: 2px;
}

.detail-title p {
    color: var(--text-muted);
    font-size: 8px;
}

.detail-alert {
    background-color: rgba(46, 150, 173, 0.08);
    border: 1px solid rgba(46, 150, 173, 0.2);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.detail-alert span {
    font-size: 8px;
    font-weight: 600;
}

.alert-switch {
    width: 24px;
    height: 14px;
    background-color: var(--brand-teal);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.alert-switch::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.store-price-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    background-color: #0c0e12;
    border-radius: 6px;
    border-left: 3px solid var(--brand-teal);
}

.store-row.best-price {
    border-left-color: var(--color-success);
    background-color: rgba(16, 185, 129, 0.05);
}

.store-name {
    font-weight: 600;
    font-size: 9px;
}

.store-price {
    font-weight: 700;
    font-size: 9px;
    text-align: right;
}

.store-badge {
    background-color: var(--color-success);
    color: #000;
    font-size: 7px;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-left: 4px;
}

.price-history-sim {
    height: 45px;
    border-bottom: 1px dashed var(--border-color);
    margin: 8px 0;
    position: relative;
}

.price-history-sim svg {
    width: 100%;
    height: 100%;
}

/* Screen 3: Portfolio UI */
.portfolio-value-card {
    background: linear-gradient(135deg, var(--brand-teal), #1a4f5c);
    border-radius: 12px;
    padding: 14px;
    color: white;
    margin-bottom: 14px;
}

.port-lbl {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.port-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    margin: 4px 0;
}

.port-perf {
    font-size: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
}

.port-perf span {
    color: #4ade80;
}

.port-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.port-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #14181f;
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 8px;
}

.port-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.port-item-img {
    width: 25px;
    height: 35px;
    background-color: #1e2530;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    font-weight: 700;
    color: var(--brand-yellow);
}

.port-item-meta h5 {
    font-size: 9px;
    font-weight: 700;
}

.port-item-meta p {
    font-size: 7px;
    color: var(--text-muted);
}

.port-item-price {
    text-align: right;
}

.port-item-val {
    font-weight: 700;
    font-size: 9px;
}

.port-item-gain {
    font-size: 7px;
    color: var(--color-success);
}

/* Screen 4: Trade UI */
.trade-builder {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.trade-side {
    background-color: #14181f;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px;
}

.trade-side-title {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
}

.trade-card-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0c0e12;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
}

.trade-card-slot span.val {
    font-weight: 700;
    color: var(--brand-yellow);
}

.trade-balance-strip {
    background-color: #14181f;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.trade-balance-lbl {
    font-size: 8px;
    color: var(--text-secondary);
}

.trade-balance-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-success);
    margin: 2px 0 6px 0;
}

.balance-meter {
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.balance-meter-fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background-color: var(--color-success);
    border-radius: 2px;
}

.trade-btn {
    background-color: var(--brand-yellow);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 9px;
    text-transform: uppercase;
    margin-top: 4px;
    cursor: pointer;
}

/* Phone Nav Bar */
.phone-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #0b0d10;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 6px;
    z-index: 10;
}

.phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.phone-nav-item i {
    font-size: 14px;
}

.phone-nav-item:hover,
.phone-nav-item.active {
    color: var(--brand-yellow);
}

.phone-nav-item.active i {
    transform: scale(1.1);
}

/* App Showcase Interactive Integration Styling */
.showcase-visual {
    position: relative;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 75, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* APK Download Section */
.download-section {
    padding: 100px 0;
    background-color: rgba(11, 13, 16, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.download-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.download-info h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 38px;
    margin-bottom: 20px;
}

.download-info h2 span {
    color: var(--brand-yellow);
}

.download-info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.download-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.download-badge-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.download-badge-item i {
    font-size: 28px;
    color: var(--brand-teal);
}

.download-badge-text div.title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.download-badge-text div.sub {
    font-size: 12px;
    color: var(--text-muted);
}

.install-guide {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
}

.install-guide h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 16px;
}

.step-num {
    width: 24px;
    height: 24px;
    background-color: rgba(46, 150, 173, 0.1);
    color: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(46, 150, 173, 0.2);
}

.step-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.step-text strong {
    color: var(--text-primary);
}

/* Footer styling */
.footer {
    background-color: #07090b;
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--brand-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background-color: var(--brand-teal);
    color: white;
    border-color: var(--brand-teal);
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .showcase-layout {
        grid-template-columns: 1fr;
    }
    
    .simulator-container {
        order: -1;
    }
    
    .download-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .footer-links-grid {
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}
