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

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #1b0f2b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ATTENTION: Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1b0f2b 0%, #2d1b3d 50%, #1b0f2b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(245, 193, 75, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 193, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo {
    width: 240px;
    height: 240px;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(245, 193, 75, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #f5c14b 0%, #ffd700 50%, #f5c14b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b794f6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5c14b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* INTEREST: Problem & Solution */
.problem-solution {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1b0f2b 0%, #2a1a3a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.25rem;
    color: #b794f6;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(45, 27, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 193, 75, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 193, 75, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #f5c14b;
    box-shadow: 0 20px 40px rgba(245, 193, 75, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5c14b;
}

.feature-card p {
    color: #b794f6;
    line-height: 1.6;
}

/* DESIRE: App Screenshots */
.app-showcase {
    padding: 6rem 0;
    background: #1b0f2b;
}

.screenshots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.screenshot-card {
    background: rgba(45, 27, 61, 0.4);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(245, 193, 75, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.screenshot-card:hover {
    transform: scale(1.05);
    border-color: #f5c14b;
    box-shadow: 0 15px 30px rgba(245, 193, 75, 0.3);
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.screenshot-label {
    font-size: 0.9rem;
    color: #f5c14b;
    font-weight: 600;
}

.author-info h4 {
    color: #f5c14b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #b794f6;
    font-size: 0.9rem;
}

.rating {
    font-size: 1.2rem;
}

/* ACTION: CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1b0f2b 50%, #2d1b3d 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 193, 75, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content > p {
    font-size: 1.25rem;
    color: #b794f6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    background: rgba(45, 27, 61, 0.6);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(245, 193, 75, 0.3);
    color: #f5c14b;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #f5c14b 0%, #ffd700 100%);
    color: #1b0f2b;
    box-shadow: 0 10px 30px rgba(245, 193, 75, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 193, 75, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #f5c14b;
    border-color: #f5c14b;
}

.cta-button.secondary:hover {
    background: #f5c14b;
    color: #1b0f2b;
    transform: translateY(-3px);
}

.button-icon {
    font-size: 1.2rem;
}

.urgency-text {
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(27, 15, 43, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(245, 193, 75, 0.2);
}

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

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: #f5c14b;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(45, 27, 61, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(245, 193, 75, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #f5c14b;
    color: #1b0f2b;
    transform: translateY(-2px);
}

.footer-text p {
    color: #b794f6;
    margin-bottom: 0.5rem;
}

.footer-text p:first-child {
    font-weight: 600;
    color: #ffffff;
}

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

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshots-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .screenshots-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.cta-buttons {
  display: flex;
  gap: 12px; /* butonlar arası boşluk */
}

.cta-buttons .cta-button {
  flex: 1;
  text-align: center;
  max-width: 300px;
}

/* ABOUT / CONTACT / PRIVACY Sections */
.about-section, .contact-section, .privacy-section {
    padding: 6rem 0;
    background: #1b0f2b;
    border-top: 1px solid rgba(245, 193, 75, 0.12);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(45, 27, 61, 0.6);
    border: 1px solid rgba(245, 193, 75, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: #f5c14b;
    box-shadow: 0 20px 40px rgba(245, 193, 75, 0.15);
}

.info-card h3 {
    color: #f5c14b;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.info-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.info-list li {
    color: #b794f6;
    line-height: 1.5;
}

.info-list li span {
    color: #ffffff;
    font-weight: 600;
    margin-right: 0.4rem;
}

/* Footer quick links */
.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #f5c14b;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}