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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #191919;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-download {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    color: #191919;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 174, 37, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFAE25;
    border: 2px solid #FFAE25;
}

.btn-secondary:hover {
    background-color: rgba(255, 174, 37, 0.1);
}

.btn-download {
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    color: #191919;
    font-weight: 600;
    padding: 10px 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.nav-menu li a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a.active {
    color: #FFAE25;
}

.nav-menu li a:not(.active):hover {
    color: #FFAE25;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #FFAE25, #FF7725);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background-color: #191919;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #191919;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.chat-bubble.left {
    background-color: #2a2a2a;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-bubble.right {
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    color: #191919;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1f1f1f;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFAE25, #FF7725);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #191919;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.feature-description {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Download Section */
.download {
    padding: 100px 0;
    background-color: #191919;
}

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

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: #2a2a2a;
    border-radius: 12px;
    min-width: 200px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.store-btn i {
    font-size: 2rem;
}

.store-btn.apple i {
    color: #ffffff;
}

.store-btn.google i {
    color: #34A853;
}

.store-btn div {
    text-align: left;
}

.store-btn div span {
    display: block;
    font-size: 0.8rem;
    color: #b0b0b0;
}

.store-btn div strong {
    display: block;
    font-size: 1.2rem;
    color: #f0f0f0;
}

.download-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

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

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-tagline {
    color: #b0b0b0;
    margin-top: 10px;
    font-size: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #FFAE25;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-note {
    color: #888;
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Privacy and Terms Pages */
.content-page {
    padding: 150px 0 100px;
    background-color: #191919;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2a2a2a;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    text-align: center;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFAE25;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.content-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #f0f0f0;
}

.content-section p, .content-section ul {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

.highlight {
    background-color: rgba(255, 174, 37, 0.1);
    border-left: 4px solid #FFAE25;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(25, 25, 25, 0.98);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #333;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-container {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480