/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #F4B400;
    --gold-light: #FFD54F;
    --gold-dark: #D4A017;
    --rich-black: #121212;
    --dark-gray: #1E1E1E;
    --light-gray: #2D2D2D;
    --pure-black: #000000;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    --gradient-gold: linear-gradient(135deg, #F4B400 0%, #FFD54F 100%);
    --gradient-gold-horizontal: linear-gradient(90deg, #F4B400 0%, #FFD54F 100%);
    
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(244, 180, 0, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--rich-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

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

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold-horizontal);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.5);
}

/* Mobile-first responsive typography */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight {
    color: var(--gold-light);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-store {
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--rich-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: left 0.7s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 180, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 24px;
}

.btn-secondary:hover {
    background: rgba(244, 180, 0, 0.1);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F4B400, #FFD54F, #F4B400);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 0.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 180, 0, 0.1);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Updated Logo Icon - Black background with golden ring */
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.3);
    overflow: hidden;
    padding: 2px;
    position: relative;
    transition: all var(--transition-normal);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid rgba(244, 180, 0, 0.2);
    pointer-events: none;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.2);
    padding: 6px;
}

.logo:hover .logo-icon {
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(244, 180, 0, 0.5);
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    color: var(--white);
}

.logo-gold {
    color: var(--primary-gold);
}

.nav-links {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(244, 180, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 213, 79, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    text-align: center;
    animation: slideInLeft 0.8s ease;
}

.hero-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge-item {
    background: rgba(244, 180, 0, 0.1);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(244, 180, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.badge-item:nth-child(2) { animation-delay: 0.1s; }
.badge-item:nth-child(3) { animation-delay: 0.2s; }

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
    background: linear-gradient(90deg, #F4B400, #FFD54F, #F4B400);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.star {
    font-size: 1rem;
    color: var(--gold-light);
    margin-left: 2px;
}

.hero-scroll-indicator {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

.phone-mockup-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    animation: slideInRight 0.8s ease;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(244, 180, 0, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F4B400, #FFD54F, #D4A017, #F4B400);
    border-radius: 42px;
    z-index: -1;
    opacity: 0.5;
    animation: shimmer 3s infinite linear;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screenshot-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active img {
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.5);
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-gold);
    color: var(--rich-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-gold);
    z-index: 10;
    animation: float 3s ease-in-out infinite 1s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--dark-gray);
}

/* Gradient Borders */
.gradient-border {
    position: relative;
    background: var(--dark-gray);
    border-radius: var(--border-radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F4B400, #FFD54F, #D4A017, #F4B400);
    border-radius: calc(var(--border-radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 0.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-gray);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    background: rgba(30, 30, 30, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(244, 180, 0, 0.1);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--rich-black);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(244, 180, 0, 0.2);
}

.step-title {
    margin-bottom: 1rem;
}

.step-description {
    margin-bottom: 1.5rem;
}

.step-screenshot {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid rgba(244, 180, 0, 0.2);
    position: relative;
}

.step-screenshot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.step-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.step:hover .step-screenshot img {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 80px 0;
}

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

.feature-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(244, 180, 0, 0.1);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(244, 180, 0, 0.2);
}

.feature-title {
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--dark-gray);
}

.download-content {
    text-align: center;
}

.download-title {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.download-subtitle {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.store-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(244, 180, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all var(--transition-normal);
}

.store-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.store-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all var(--transition-normal);
}

.store-card:hover .store-icon {
    transform: scale(1.1);
    background: rgba(244, 180, 0, 0.2);
}

.store-info h3 {
    margin-bottom: 0.5rem;
}

.store-info p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.store-qr img {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(244, 180, 0, 0.3);
    padding: 8px;
    background: var(--white);
    margin-top: 1.5rem;
    transition: all var(--transition-normal);
}

.store-card:hover .store-qr img {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-gold);
    animation: fadeInUp 0.8s ease;
}

.download-feature:nth-child(2) { animation-delay: 0.1s; }
.download-feature:nth-child(3) { animation-delay: 0.2s; }

.download-feature i {
    font-size: 1.25rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background: rgba(30, 30, 30, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(244, 180, 0, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(244, 180, 0, 0.2);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
    transition: all var(--transition-normal);
}

.contact-link:hover {
    transform: translateX(5px);
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 4px 8px;
    border: 1px solid rgba(244, 180, 0, 0.3);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.contact-links a:hover {
    background: rgba(244, 180, 0, 0.1);
    transform: translateY(-2px);
}

.faq-section h3 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

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

.faq-item {
    background: rgba(30, 30, 30, 0.8);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(244, 180, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(244, 180, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(244, 180, 0, 0.05);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--rich-black);
    border-top: 1px solid rgba(244, 180, 0, 0.1);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-links a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: left 0.7s;
}

.social-links a:hover::after {
    left: 120%;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
    overflow: hidden;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--primary-gold);
    transition: all var(--transition-normal);
}

.footer-column a:hover {
    color: var(--primary-gold);
    padding-left: 15px;
}

.footer-column a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    border: none;
    color: var(--rich-black);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(244, 180, 0, 0.6);
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .container {
        padding: 0 32px;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-options {
        flex-direction: row;
        justify-content: center;
    }
    
    .store-card {
        min-width: 280px;
    }
    
    .contact-content {
        flex-direction: row;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .faq-section {
        flex: 1;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand {
        flex: 1;
    }
    
    .footer-links {
        flex: 2;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all var(--transition-fast);
        position: relative;
        padding: 5px 0;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-gold);
        transition: width var(--transition-normal);
    }
    
    .nav-links a:hover {
        color: var(--primary-gold);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        max-width: 400px;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .phone-mockup {
        width: 320px;
        height: 640px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-screenshot {
        height: 250px;
    }
    
    .floating-badge {
        top: -20px;
        right: -20px;
        padding: 10px 20px;
    }
}