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

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #faf5ff 100%);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}



/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	padding:5px 0px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo img {
    height: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #7c3aed;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu.active {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #7c3aed;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .download-buttons {
        flex-direction: row;
    }
}

.download-btn {
    display: flex;
    align-items: center;
	border:none;
    justify-content: center;
    gap: 0.75rem;
    color: white;
	background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    padding: 1rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition:all ease 0.3s;
	
}

.download-btn:hover {
    background: linear-gradient(135deg, #632dc1 0%, #9d2a63 100%);
	transition:all ease 0.3s;
}

.download-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.download-text {
    text-align: left;
}

.download-subtitle {
    font-size: 0.75rem;
    color: #d1d5db;
}

.download-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.download-title a {
	color:white;
	text-decoration:None;
}

/* Phone Mockups */
.hero-phones {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-phones {
        justify-content: flex-end;
    }
}

.phone-container {
    position: relative;
}

.phone {
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.phone-main {
    position: relative;
    z-index: 10;
    width: 16rem;
    height: 32.5rem;
    background: #000;
}

.phone-secondary {
    position: absolute;
    top: 3rem;
    right: -5rem;
    width: 14rem;
    height: 28.5rem;
    background: #000;
    opacity: 0.8;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.phone-screen-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #ec4899 100%);
}

.phone-screen-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 50%, #7c3aed 100%);
}

.phone-notch {
    position: absolute;
    top: 2rem;
    width: 5rem;
    height: 1.5rem;
    background: #000;
    border-radius: 9999px;
}

.phone-content {
    text-align: center;
    padding: 0 2rem;
}

.phone-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.phone-icon img {
    width: 3.4rem;
}

.phone-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phone-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.phone-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 8rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

.dot:nth-child(2) {
    width: 6rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #e9d5ff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: #7c3aed;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
}

.screenshots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.screenshot-phone {
    flex-shrink: 0;
    width: 14rem;
    height: 30rem;
    background: #000;
    border-radius: 2.5rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.screenshot-screen {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
     display: flex;
    justify-content: center; /* yatayda ortalar */
}

/* Dashboard Screen */
/* .screenshot-screen:first-child {
    background: white;
} */

/* Tek sıradaki çocuklar (1,3,5...) */
.screenshot-screen:nth-child(odd) {
    background-color: white;
}




.dashboard-content {
    padding: 4rem 1.5rem 1.5rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.greeting-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.user-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
}

.balance-card {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.balance-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-number {
    font-size: 0.75rem;
    opacity: 0.8;
}

.card-dots {
    display: flex;
    gap: 0.25rem;
}

.card-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.card-dot.active {
    background: white;
}

.transactions-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.transaction-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-icon.green {
    background: #dcfce7;
}

.transaction-icon.green::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background: #16a34a;
    border-radius: 50%;
}

.transaction-icon.blue {
    background: #dbeafe;
}

.transaction-icon.blue::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background: #2563eb;
    border-radius: 50%;
}

.transaction-details {
    flex: 1;
}

.transaction-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.transaction-time {
    font-size: 0.75rem;
    color: #6b7280;
}

.transaction-amount {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

/* Face Recognition Screen */
.face-recognition {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
}

.face-recognition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5rem;
}

.face-scanner {
    position: relative;
    margin-bottom: 2rem;
}

.scanner-circle {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.scanner-inner {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-inner svg {
    width: 2.5rem;
    height: 2.5rem;
}

.scanner-ring {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ping 2s infinite;
}

.scanner-ring-outer {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.face-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.face-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.2s;
}

/* Cards Screen */
.cards-screen {
    background: #f9fafb;
}

.cards-content {
    padding: 4rem 1.5rem 1.5rem;
}

.cards-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cards-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.cards-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credit-card {
    border-radius: 0.75rem;
    padding: 1rem;
    color: white;
}

.credit-card.visa {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.credit-card.mastercard {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-brand {
    font-size: 0.75rem;
    opacity: 0.8;
}

.card-chip {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.card-number {
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.8;
}

.add-card-btn {
    width: 100%;
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
}

.add-card-btn:hover {
    border-color: #a855f7;
    background: #faf5ff;
}

.add-icon {
    width: 2rem;
    height: 2rem;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #6b7280;
}

.add-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 2.5rem;
    }
}

.footer-description {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .footer-download-buttons {
        flex-direction: row;
    }
}

.footer-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.footer-download-btn a{
background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-download-btn:hover {
    background: #f3f4f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 3rem;
    color: white;
}

.footer-brand {
    font-size: 1.125rem;
    font-weight: 700;
	display:Flex;
	align-items:Center;
	gap:10px;
}

.footer-brand img {
	width:60px;
}

.holding {
	display:Flex;
	justify-content:center;
	margin-top:30px;
}

.holding  img {
	width:100px;
}


.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: white;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}