/* Forex Shield Sub-Site Stylesheet (urhs.in/forexshield) */

:root {
    --bg-dark: #0a0e17;
    --bg-surface: #111827;
    --bg-card: rgba(17, 24, 39, 0.82);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --bg-input: #1e293b;
    
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glass-glow: rgba(0, 242, 254, 0.4);
    
    --accent-cyan: #00f2fe;
    --accent-blue: #38bdf8;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-red: #ef4444;
    
    --grad-primary: linear-gradient(135deg, #00f2fe 0%, #38bdf8 100%);
    --grad-shield: linear-gradient(135deg, #a855f7 0%, #00f2fe 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --btn-primary-bg: linear-gradient(135deg, #00f2fe 0%, #38bdf8 100%);
    --btn-primary-text: #070a11;
    
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --nav-bg: rgba(15, 23, 42, 0.92);
    --nav-border: rgba(255, 255, 255, 0.14);
}

[data-theme="light"] {
    --bg-dark: #f1f5f9;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-input: #ffffff;
    
    --border-glass: #cbd5e1;
    --border-glass-glow: rgba(2, 132, 199, 0.4);
    
    --accent-cyan: #0284c7;
    --accent-blue: #1d4ed8;
    --accent-indigo: #4338ca;
    --accent-purple: #7e22ce;
    --accent-green: #047857;
    --accent-amber: #b45309;
    --accent-red: #dc2626;
    
    --grad-primary: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
    --grad-shield: linear-gradient(135deg, #7e22ce 0%, #0284c7 100%);
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #475569;
    
    --btn-primary-bg: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
    --btn-primary-text: #ffffff;
    
    --shadow-glow: 0 8px 25px rgba(2, 132, 199, 0.2);
    --shadow-card: 0 6px 20px rgba(15, 23, 42, 0.08);
    
    --nav-bg: rgba(255, 255, 255, 0.96);
    --nav-border: #cbd5e1;
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --bg-dark: #f1f5f9;
        --bg-surface: #ffffff;
        --bg-card: #ffffff;
        --bg-card-hover: #f8fafc;
        --bg-input: #ffffff;
        
        --border-glass: #cbd5e1;
        --border-glass-glow: rgba(2, 132, 199, 0.4);
        
        --accent-cyan: #0284c7;
        --accent-blue: #1d4ed8;
        --accent-indigo: #4338ca;
        --accent-purple: #7e22ce;
        --accent-green: #047857;
        --accent-amber: #b45309;
        --accent-red: #dc2626;
        
        --grad-primary: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
        --grad-shield: linear-gradient(135deg, #7e22ce 0%, #0284c7 100%);
        
        --text-primary: #0f172a;
        --text-secondary: #334155;
        --text-muted: #475569;
        
        --btn-primary-bg: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
        --btn-primary-text: #ffffff;
        
        --shadow-glow: 0 8px 25px rgba(2, 132, 199, 0.2);
        --shadow-card: 0 6px 20px rgba(15, 23, 42, 0.08);
        
        --nav-bg: rgba(255, 255, 255, 0.96);
        --nav-border: #cbd5e1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.bg-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    animation: orbFloat 18s infinite alternate ease-in-out;
}

[data-theme="light"] .orb {
    opacity: 0.1;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #00f2fe;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    top: 30%;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: #38bdf8;
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.05); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

.svg-icon {
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    vertical-align: -0.18em;
    fill: currentColor;
    flex-shrink: 0;
}

.svg-icon-lg {
    width: 1.5em;
    height: 1.5em;
}

.svg-icon-xl {
    width: 2em;
    height: 2em;
}

.svg-icon-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.app-logo:hover {
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, .brand-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: var(--grad-shield);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* Menubar */
.menubar-wrapper {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    z-index: 1000;
}

.navbar {
    padding: 8px 16px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--nav-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    gap: 12px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.brand-name-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    white-space: nowrap;
}

.brand-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.theme-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.mobile-menu-btn {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-drawer {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--nav-border);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.25s ease;
}

.mobile-drawer.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-drawer .nav-link {
    font-size: 0.92rem;
    padding: 8px 12px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Play Store Button */
.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.play-store-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
}

.play-store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.play-store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.play-store-sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.play-store-main {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

/* Market Ticker Clearance */
.market-ticker {
    margin-top: 84px;
    margin-bottom: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    gap: 12px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.ticker-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

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

/* Hero Section */
.hero {
    padding: 24px 0 44px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-wrap {
    width: 270px;
    border-radius: 36px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-phone-img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    z-index: 2;
    animation: floatAnim 6s infinite ease-in-out alternate;
}

.float-card-1 {
    top: 10%;
    left: -20px;
}

.float-card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: -3s;
}

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

.float-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.float-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 44px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 28px;
}

.section-tag {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Showcase Tabs */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--accent-cyan);
    color: #070a11;
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 14px rgba(0, 242, 254, 0.3);
}

.showcase-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
}

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

.phone-mockup-frame {
    width: 260px;
    border-radius: 32px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.showcase-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.showcase-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 0.92rem;
}

.check-icon-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 24px;
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.feature-card h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sessions Grid */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.session-card {
    padding: 20px;
    position: relative;
}

.session-status {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #64748b;
}

.session-card.active .session-status {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.session-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-time {
    font-size: 0.92rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 6px;
}

/* Screenshot Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
    transition: all 0.25s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 10, 17, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Compliance Hub */
.compliance-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-glass);
    padding: 44px 0;
}

.legal-card {
    padding: 24px;
    margin-bottom: 16px;
}

.legal-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-cyan);
    color: #070a11;
    font-size: 0.8rem;
    font-weight: 800;
    margin-right: 6px;
}

/* Footer */
.footer {
    padding: 36px 0 20px;
    border-top: 1px solid var(--border-glass);
    background: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 10px;
}

/* Lightbox Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    max-width: 480px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .hero-description {
        margin: 0 auto 20px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .float-card {
        display: none;
    }
    
    .showcase-display {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-check-list {
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }
    
    .section {
        padding: 28px 0;
    }
    
    .menubar-wrapper {
        width: calc(100% - 16px);
        top: 8px;
    }
    
    .navbar {
        padding: 6px 10px;
        gap: 6px;
    }

    .brand-name {
        font-size: 0.95rem;
    }
    
    .brand-tag {
        display: none;
    }
    
    .nav-actions {
        gap: 6px;
    }

    .market-ticker {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 74px;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
    
    .hero {
        padding: 12px 0 28px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-phone-wrap {
        width: 220px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
