/*
Theme Name: AstroLock
Theme URI: https://astrolockpolaralign.com
Author: Langazo TI
Author URI: https://astrolockpolaralign.com
Description: Tema WordPress profissional para o app AstroLock - Precision Polar Alignment. Design escuro espacial com navegação intuitiva.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astrolock
Tags: dark, astronomy, app-landing, responsive, one-page, custom-menu
*/

/* ============================================
   ASTROLOCK WORDPRESS THEME
   Precision Polar Alignment
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #080c15 0%, #0d1424 50%, #111a2e 100%);
    color: #f8fafc;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: #94a3b8;
}

a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a855f7;
}

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

/* WordPress Required Classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1.5rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.5rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ASTROLOCK CUSTOM STYLES
   ============================================ */

/* Colors */
:root {
    --astro-cyan: #00d4ff;
    --astro-purple: #a855f7;
    --astro-blue: #3b82f6;
    --astro-green: #10b981;
    --astro-amber: #f59e0b;
    --astro-red: #ef4444;
    --bg-dark: #080c15;
    --bg-card: rgba(15, 23, 42, 0.8);
    --border-color: rgba(148, 163, 184, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

/* Mono Font */
.mono {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Status Dots */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot-online {
    background: var(--astro-green);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    color: #080c15;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f8fafc;
}

.btn-outline:hover {
    background: rgba(148, 163, 184, 0.1);
    color: var(--astro-cyan);
}

/* Tech Badge */
.tech-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid;
}

/* Section Padding */
.section-padding {
    padding: 6rem 1rem;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.site-header.scrolled {
    background: rgba(8, 12, 21, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

.site-logo:hover {
    color: #f8fafc;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: #080c15;
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--astro-cyan);
    background: rgba(0, 212, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #f8fafc;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 12, 21, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #94a3b8;
    font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--astro-cyan);
    background: rgba(0, 212, 255, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#starfield {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    filter: blur(128px);
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    filter: blur(128px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--astro-cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.hero-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-stat-dot.cyan { background: var(--astro-cyan); }
.hero-stat-dot.purple { background: var(--astro-purple); }
.hero-stat-dot.green { background: var(--astro-green); }

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-radius: 3rem;
    filter: blur(32px);
    transform: scale(1.1);
}

.phone-frame {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 2.5rem;
    padding: 0.75rem;
    border: 1px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: #080c15;
    border-radius: 2rem;
    overflow: hidden;
    width: 280px;
    height: 560px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.phone-app-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon svg {
    width: 16px;
    height: 16px;
    color: #080c15;
}

.phone-app-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.phone-status-dot {
    width: 6px;
    height: 6px;
    background: var(--astro-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.phone-status-text {
    color: var(--astro-green);
}

.phone-hud {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 1rem;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.phone-crosshair {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-crosshair-circle {
    width: 128px;
    height: 128px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
}

.phone-crosshair-center {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--astro-cyan);
    border-radius: 50%;
}

.phone-crosshair-h {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 212, 255, 0.2);
}

.phone-crosshair-v {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0, 212, 255, 0.2);
}

.phone-data {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-data-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

.phone-data-label {
    color: #64748b;
}

.phone-data-value.cyan { color: var(--astro-cyan); }
.phone-data-value.purple { color: var(--astro-purple); }
.phone-data-value.green { color: var(--astro-green); }

.phone-target {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(8, 12, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.phone-target-label {
    font-size: 0.625rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.phone-target-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--astro-cyan);
}

.phone-target-error {
    font-size: 0.625rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.phone-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 0.5rem;
}

.phone-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    border: none;
    cursor: pointer;
}

.phone-btn.active {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--astro-cyan);
}

.phone-btn.inactive {
    background: #1e293b;
    color: #64748b;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-badge.gps {
    top: -1rem;
    right: -1rem;
}

.floating-badge.sat {
    bottom: -1rem;
    left: -1rem;
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    animation-delay: 2s;
}

.floating-badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.floating-badge.gps .floating-badge-dot {
    background: var(--astro-green);
}

.floating-badge.sat .floating-badge-dot {
    background: var(--astro-purple);
}

.floating-badge-text {
    font-size: 0.625rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.floating-badge.gps .floating-badge-text {
    color: var(--astro-green);
}

.floating-badge.sat .floating-badge-text {
    color: var(--astro-purple);
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--astro-purple);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #94a3b8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.cyan:hover {
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-card.purple:hover {
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.feature-card.green:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.feature-card.amber:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.feature-card.blue:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-card.red:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

.feature-badge.cyan {
    background: rgba(0, 212, 255, 0.1);
    color: var(--astro-cyan);
}

.feature-badge.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--astro-purple);
}

.feature-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--astro-green);
}

.feature-badge.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--astro-amber);
}

.feature-badge.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--astro-blue);
}

.feature-badge.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--astro-red);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.feature-icon.cyan svg {
    color: var(--astro-cyan);
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-icon.purple svg {
    color: var(--astro-purple);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-icon.green svg {
    color: var(--astro-green);
}

.feature-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-icon.amber svg {
    color: var(--astro-amber);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.feature-icon.blue svg {
    color: var(--astro-blue);
}

.feature-icon.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.feature-icon.red svg {
    color: var(--astro-red);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-glow-1 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 50%;
    filter: blur(128px);
    transform: translateY(-50%);
}

.how-it-works-glow-2 {
    position: absolute;
    top: 50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 50%;
    filter: blur(128px);
    transform: translateY(-50%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 4rem;
        left: 60%;
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, var(--border-color) 0%, transparent 100%);
    }
    
    .step-connector::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: var(--border-color);
        border-radius: 50%;
    }
    
    .step-card:last-child .step-connector {
        display: none;
    }
}

.step-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.step-badge.cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--astro-cyan);
}

.step-badge.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--astro-purple);
}

.step-badge.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--astro-green);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon.cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.step-icon.cyan svg {
    color: var(--astro-cyan);
    width: 40px;
    height: 40px;
}

.step-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.step-icon.purple svg {
    color: var(--astro-purple);
    width: 40px;
    height: 40px;
}

.step-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.step-icon.green svg {
    color: var(--astro-green);
    width: 40px;
    height: 40px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.steps-note {
    margin-top: 4rem;
    text-align: center;
}

.steps-note-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
}

.steps-note-dot {
    width: 8px;
    height: 8px;
    background: var(--astro-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.steps-note-text {
    font-size: 0.875rem;
    color: var(--astro-green);
}

.steps-note-text strong {
    font-weight: 700;
}

/* ============================================
   TECH SPECS SECTION
   ============================================ */
.tech-specs {
    padding: 6rem 0;
    position: relative;
}

.tech-specs::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.spec-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon.cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.spec-icon.cyan svg {
    color: var(--astro-cyan);
    width: 20px;
    height: 20px;
}

.spec-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.spec-icon.purple svg {
    color: var(--astro-purple);
    width: 20px;
    height: 20px;
}

.spec-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.spec-icon.green svg {
    color: var(--astro-green);
    width: 20px;
    height: 20px;
}

.spec-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.spec-icon.amber svg {
    color: var(--astro-amber);
    width: 20px;
    height: 20px;
}

.spec-title {
    font-size: 1rem;
    font-weight: 700;
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-item-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.spec-item-value {
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

.spec-item-value.cyan {
    color: var(--astro-cyan);
}

.spec-item-value.purple {
    color: var(--astro-purple);
}

.spec-item-value.green {
    color: var(--astro-green);
}

.spec-item-value.amber {
    color: var(--astro-amber);
}

/* Stats Bar */
.stats-bar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-value span {
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon svg {
    width: 16px;
    height: 16px;
    color: var(--astro-cyan);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: var(--astro-amber);
    fill: var(--astro-amber);
}

.testimonial-quote {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #080c15;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #64748b;
}

/* Trust Badges */
.trust-badges {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    border-radius: 50%;
    border: 2px solid #080c15;
    margin-left: -8px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-rating svg {
    width: 20px;
    height: 20px;
    color: var(--astro-amber);
    fill: var(--astro-amber);
}

.trust-rating-value {
    font-weight: 700;
    color: #f8fafc;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 50%, rgba(0, 212, 255, 0.2) 100%);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 768px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(8, 12, 21, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--astro-cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1.5rem;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--astro-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-note {
    font-size: 0.875rem;
    color: #94a3b8;
}

.cta-note span {
    color: var(--astro-cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.2);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: #f8fafc;
}

.footer-description {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--astro-cyan);
}

.footer-contact-item a:hover {
    color: var(--astro-cyan);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: var(--astro-cyan);
}

.footer-links a svg {
    width: 12px;
    height: 12px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-legal a:hover {
    color: var(--astro-cyan);
}

/* ============================================
   PAGE CONTENT (Privacy, Contact)
   ============================================ */
.page-content {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.page-header {
    max-width: 896px;
    margin: 0 auto 3rem;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.page-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-badge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--astro-cyan);
}

.page-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--astro-cyan);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.page-meta {
    font-size: 0.875rem;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
}

.page-body {
    max-width: 896px;
    margin: 0 auto;
}

.content-section {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section p {
    color: #94a3b8;
    line-height: 1.7;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.content-section h2 .icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section h2 .icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.content-section h2 .icon.purple svg {
    color: var(--astro-purple);
}

.content-section h2 .icon.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.content-section h2 .icon.green svg {
    color: var(--astro-green);
}

.content-section h2 .icon.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.content-section h2 .icon.amber svg {
    color: var(--astro-amber);
}

.highlight-box {
    background: rgba(15, 23, 42, 0.5);
    border-left: 4px solid var(--astro-cyan);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.highlight-box li::before {
    content: '•';
    color: var(--astro-cyan);
    margin-top: 0.1rem;
}

.important-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.important-note strong {
    color: var(--astro-green);
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    color: #f8fafc;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: rgba(15, 23, 42, 0.8);
    color: var(--astro-cyan);
}

.service-link svg {
    width: 16px;
    height: 16px;
    color: #64748b;
    transition: color 0.3s ease;
}

.service-link:hover svg {
    color: var(--astro-cyan);
}

.privacy-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.privacy-box-header svg {
    width: 20px;
    height: 20px;
    color: var(--astro-green);
}

.privacy-box-header span {
    font-weight: 600;
}

.privacy-box p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon.cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.contact-info-icon.cyan svg {
    color: var(--astro-cyan);
    width: 24px;
    height: 24px;
}

.contact-info-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.contact-info-icon.purple svg {
    color: var(--astro-purple);
    width: 24px;
    height: 24px;
}

.contact-info-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-info-icon.green svg {
    color: var(--astro-green);
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-info-content a {
    font-size: 0.875rem;
    color: var(--astro-cyan);
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-info-content span {
    font-size: 0.875rem;
    color: #f8fafc;
}

.contact-quick-links h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-quick-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #94a3b8;
}

.contact-quick-links a:hover {
    color: var(--astro-cyan);
}

.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: #f8fafc;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--astro-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #64748b;
}

.form-textarea {
    resize: none;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--astro-cyan) 0%, var(--astro-purple) 100%);
    border: none;
    border-radius: 0.75rem;
    color: #080c15;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--astro-green);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .section-padding {
        padding: 4rem 1rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .phone-frame {
        transform: scale(0.9);
    }
    
    .floating-badge {
        display: none;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .mobile-menu-btn,
    .hero-glow-1,
    .hero-glow-2,
    .cta-glow,
    .how-it-works-glow-1,
    .how-it-works-glow-2 {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Real screenshot integration */
.app-shot-frame {
    padding: 0.9rem;
}

.app-shot-screen {
    padding: 0;
    background: #030712;
}

.app-shot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.floating-badge-icon-img {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.screenshots {
    padding: 6rem 0;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.08), transparent 35%), linear-gradient(180deg, #07111f 0%, #040812 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.screenshot-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.screenshot-media {
    padding: 0.75rem 0.75rem 0;
}

.screenshot-media img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 1rem;
    display: block;
    background: #020617;
}

.screenshot-copy {
    padding: 1.1rem 1rem 1.25rem;
}

.screenshot-copy h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.screenshot-copy p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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