/* ========================================
   AURIC MUSIC — GLOBAL STYLES
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-surface: #161616;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);

    --accent-red: #FF0000;
    --accent-orange: #FF6B35;
    --accent-pink: #FF3366;
    --accent-purple: #A855F7;
    --accent-green: #22C55E;
    --accent-cyan: #06B6D4;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #FF6B35, #FF3366, #FF0044);
    --gradient-text: linear-gradient(135deg, #FF6B35 0%, #FF3366 50%, #FF0044 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 51, 102, 0.05));

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   GRADIENT TEXT
   ======================================== */

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 25px rgba(255, 51, 102, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 51, 102, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--border-radius-pill);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-color);
    padding: 12px 0;
}

.navbar-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon svg {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-highlight {
    color: var(--accent-red);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Floating cards */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.card-album-art {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.art-1 {
    background: linear-gradient(135deg, #FF6B35, #FF0044);
}

.art-2 {
    background: linear-gradient(135deg, #A855F7, #3B82F6);
}

.art-3 {
    background: linear-gradient(135deg, #22C55E, #06B6D4);
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-artist {
    font-size: 11px;
    color: var(--text-muted);
}

.card-1 {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: 4%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon.icon-purple {
    background: rgba(168, 85, 247, 0.12);
    color: var(--accent-purple);
}

.feature-icon.icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-green);
}

.feature-icon.icon-pink {
    background: rgba(255, 51, 102, 0.12);
    color: var(--accent-pink);
}

.feature-icon.icon-orange {
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent-orange);
}

.feature-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   SHOWCASE SECTION (APP PLAYER)
   ======================================== */

.showcase {
    padding: var(--section-padding);
}

.showcase .section-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.showcase-content .section-tag {
    display: block;
    margin-bottom: 16px;
}

.showcase-content .section-title {
    margin-bottom: 20px;
}

.showcase-content .section-subtitle {
    margin: 0 0 32px 0;
    max-width: none;
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 16px;
}

/* Player Mockup */
.player-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }

.mockup-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    padding: 32px;
}

.mockup-album {
    margin-bottom: 24px;
}

.album-art-large {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 40%, #0f3460 70%, #e94560 100%);
    position: relative;
    overflow: hidden;
}

.album-art-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.album-art-large::after {
    content: '♪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
}

.mockup-details {
    margin-bottom: 24px;
}

.now-playing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.now-playing-artist {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    width: 52%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progressPulse 3s ease-in-out infinite;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.playback-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.ctrl-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.ctrl-btn svg {
    width: 20px;
    height: 20px;
}

.ctrl-btn.play-btn {
    width: 52px;
    height: 52px;
    background: var(--text-primary);
    color: var(--bg-primary);
}

.ctrl-btn.play-btn:hover {
    transform: scale(1.08);
    background: var(--text-primary);
    color: var(--bg-primary);
}

.ctrl-btn.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

/* Lyrics */
.mockup-lyrics {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.lyric-line {
    font-size: 15px;
    padding: 6px 0;
    text-align: center;
    transition: all var(--transition-base);
}

.lyric-line.faded {
    color: var(--text-muted);
}

.lyric-line.active-lyric {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 17px;
}

/* ========================================
   PREMIUM / PRICING SECTION
   ======================================== */

.premium {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border-color: rgba(255, 51, 102, 0.3);
    background: linear-gradient(180deg, rgba(255, 51, 102, 0.06) 0%, var(--bg-card) 50%);
}

.pricing-featured:hover {
    border-color: rgba(255, 51, 102, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features .check {
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-features .cross {
    color: var(--text-muted);
}

.pricing-features .disabled {
    opacity: 0.45;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */

.download {
    padding: var(--section-padding);
}

.download-content {
    text-align: center;
}

.download-content .section-tag {
    display: block;
    margin-bottom: 16px;
}

.download-content .section-title {
    margin-bottom: 16px;
}

.download-content .section-subtitle {
    margin: 0 auto 48px;
}

.download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
    min-width: 200px;
}

.download-btn:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.download-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.download-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.download-platform {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .navbar-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
}

@keyframes progressPulse {
    0%, 100% {
        width: 48%;
    }
    50% {
        width: 56%;
    }
}

/* Scroll reveal styling */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase .section-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-content {
        text-align: center;
    }

    .showcase-content .section-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .showcase-list {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-outline {
        display: none;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-subtitle br {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}
