/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --primary-orange: #FF8C00;
    --primary-magenta: #FF1493;
    --primary-purple: #8A2BE2;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --gradient-primary: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange), var(--primary-magenta), var(--primary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    --shadow-glow: 0 0 30px rgba(255, 20, 147, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.015em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.4));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.logo-center {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.logo-center i {
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: 600;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-ai {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 500px;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.phone-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Fix: App ekranının iPhone mockup içine düzgün oturması */
.phone-screen-overlay {
  position: absolute;
  top: 6%;
  left: 7%;
  width: 86%;
  height: 88%;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screenshot {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.phone-img {
    width: 340px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.5));
}

.phone-screen-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 272px;
    height: 588px;
    overflow: hidden;
    border-radius: 30px;
    z-index: 2;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-screenshot:hover {
    transform: scale(1.02);
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.25;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-yellow);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-magenta);
    bottom: 20%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-purple);
    top: 50%;
    left: 20%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--dark-bg);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

/* Before/After Section */
.before-after-section {
    padding: 8rem 0;
}

.before-after-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.comparison-item {
    text-align: center;
}

.comparison-header {
    margin-bottom: 3rem;
}

.comparison-header h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-header p {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

.comparison-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.before-image, .after-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.comparison-img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

.comparison-img:hover {
    transform: scale(1.08);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-heading);
}

.arrow {
    font-size: 2.5rem;
    color: var(--primary-purple);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* AI Generation Section */
.ai-generation {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.generation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.generation-preview {
    width: 100%;
    max-width: 900px;
}

.ai-photo-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.ai-photo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.ai-photo-item {
    display: flex;
    justify-content: center;
}

.ai-photo-img {
    width: 100%;
    height: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ai-photo-img:hover {
    transform: scale(1.08);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.generation-preview-text {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    backdrop-filter: blur(10px);
}

.generation-preview-text h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.generation-preview-text p {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Download Section */
.download {
    padding: 8rem 0;
    background: var(--card-bg);
    text-align: center;
}

.download-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.download-content p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 3rem;
    background: var(--dark-bg);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.download-btn:hover::before {
    left: 0;
}

.download-btn:hover {
    border-color: var(--primary-purple);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.download-btn i {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.download-btn:hover i {
    transform: scale(1.1);
}

.download-text {
    text-align: left;
}

.download-label {
    display: block;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        order: -1;
    }
    
    .phone-img {
        width: 320px;
    }
    
    .phone-screen-overlay {
        width: 252px;
        height: 543px;
        top: 50%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-images {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-img {
        width: 280px;
        height: 380px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .download-content h2 {
        font-size: 2.5rem;
    }
    
    .ai-photo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ai-photo-img {
        max-width: 160px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .download-btn {
        min-width: 250px;
        padding: 1.5rem 2rem;
    }
    
    .comparison-img {
        width: 250px;
        height: 330px;
    }
    
    .ai-photo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ai-photo-img {
        max-width: 140px;
    }
    
    .features {
        padding: 6rem 0;
    }
    
    .before-after-section {
        padding: 6rem 0;
    }
    
    .ai-generation {
        padding: 6rem 0;
    }
    
    .download {
        padding: 6rem 0;
    }
}

/* Legal pages */
.legal-page {
  background: var(--dark-bg);
  color: var(--text-primary);
}
.legal-container {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 20px;
}
.legal-container h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
}
.legal-container p, .legal-container li {
  font-family: var(--font-heading);
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-container ul { padding-left: 1.25rem; }
.legal-container a { color: #fff; text-decoration: underline; }
.legal-back { margin-top: 2rem; }
.footer-links {
  margin-top: 1rem;
  text-align: center;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover { color: #fff; }



