:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --secondary: #0d47a1;
    --accent: #64b5f6;
    --gradient: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    --gradient-light: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    --dark: #0d47a1;
    --dark-light: #1565c0;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --shadow-sm: 0 2px 4px rgba(30, 136, 229, 0.08);
    --shadow: 0 4px 6px rgba(30, 136, 229, 0.12);
    --shadow-lg: 0 10px 40px rgba(30, 136, 229, 0.18);
    --shadow-xl: 0 20px 60px rgba(30, 136, 229, 0.22);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-100);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 100px 0;
    overflow-x: hidden;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section__title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section__description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn--primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn--full {
    width: 100%;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--gray-900);
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.app-store-btn--apple {
    background: #000000;
}

.app-store-btn--apple:hover {
    background: #1a1a1a;
}

.app-store-btn--google {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%);
}

.app-store-btn--google:hover {
    opacity: 0.9;
}

.app-store-btn__icon {
    font-size: 28px;
    flex-shrink: 0;
}

.app-store-btn__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

.app-store-btn__text span {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.2;
    white-space: nowrap;
}

.app-store-btn__text strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.app-store-btn--large {
    padding: 16px 28px;
}

.app-store-btn--large .app-store-btn__icon {
    font-size: 32px;
}

.app-store-btn--large .app-store-btn__text strong {
    font-size: 20px;
}

.app-store-btn--white {
    background: var(--white);
    color: var(--gray-900);
}

.app-store-btn--white.app-store-btn--apple {
    background: var(--white);
    color: #000000;
}

.app-store-btn--white.app-store-btn--google {
    background: var(--white);
    color: var(--gray-900);
}

.app-store-btn--white:hover {
    background: var(--gray-100);
}

.app-store-btn--small {
    padding: 8px 16px;
}

.app-store-btn--small .app-store-btn__icon {
    font-size: 20px;
}

.app-store-btn--small .app-store-btn__text span {
    font-size: 12px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    width: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

/* SADECE NAV LOGO BÜYÜTME - WEB */
.nav__logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

.header.scrolled .nav__logo {
    color: var(--dark);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav__link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.header.scrolled .nav__link {
    color: var(--text-primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* NAV DOWNLOAD BUTTON İKONLARI - ORİJİNAL BOYUT */
.nav__download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav__download-btn--apple {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.nav__download-btn--google {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.header.scrolled .nav__download-btn--apple {
    background: #000000;
    color: var(--white);
}

.header.scrolled .nav__download-btn--google {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%);
    color: var(--white);
}

.nav__download-btn:hover {
    transform: scale(1.1);
}

/* HAMBURGER MENÜ - ORİJİNAL BOYUT */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    flex-shrink: 0;
}

.header.scrolled .nav__toggle {
    color: var(--dark);
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    pointer-events: none;
}

.nav__overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -2;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.4) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__content {
    color: var(--white);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero__badge i {
    color: #ffc107;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero__title .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #bbdefb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 35px;
}

.hero__app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.stat__label {
    font-size: 14px;
    opacity: 0.85;
}

/* Hero Phones */
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phones {
    position: relative;
    width: 350px;
    height: 500px;
}

.phone-mockup {
    position: absolute;
    width: 240px;
    height: 480px;
    background: var(--gray-900);
    border-radius: 35px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
}

.phone-mockup--back {
    top: 20px;
    left: 0;
    transform: rotate(-8deg);
    opacity: 0.7;
    animation: floatBack 6s ease-in-out infinite;
}

.phone-mockup--front {
    top: 0;
    right: 0;
    transform: rotate(5deg);
    animation: floatFront 6s ease-in-out infinite;
}

@keyframes floatBack {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes floatFront {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-20px); }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--gray-900);
    border-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1565c0 0%, #0d47a1 100%);
    border-radius: 28px;
    overflow: hidden;
    padding: 35px 12px 12px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.app-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    animation: shimmer 2s ease-in-out infinite;
}

.app-card--featured {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.app-stats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.app-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 11px;
}

.app-stat i {
    color: var(--accent);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.trusted {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow-x: hidden;
}

.trusted__content {
    text-align: center;
}

.trusted__text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted__badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.trusted__badge i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.features {
    background: var(--gray-50);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card__icon i {
    font-size: 28px;
    color: var(--primary);
}

.feature-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card__description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
}

.feature-card__link i {
    transition: var(--transition);
}

.feature-card:hover .feature-card__link i {
    transform: translateX(5px);
}

.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
    border-color: var(--primary-light);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step:nth-child(even):hover {
    transform: translateX(-10px);
}

.step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.step__content {
    flex: 1;
    min-width: 0;
}

.step__title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.step__description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon i {
    font-size: 32px;
    color: var(--primary);
}

.app-showcase {
    background: var(--gray-50);
}

.app-showcase__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-showcase__text .section__subtitle,
.app-showcase__text .section__title {
    text-align: left;
}

.app-showcase__description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-showcase__features {
    margin-bottom: 35px;
}

.app-showcase__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 16px;
}

.app-showcase__features li i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.app-showcase__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-showcase__image {
    display: flex;
    justify-content: center;
}

.app-showcase__phone {
    position: relative;
}

.phone-mockup--showcase {
    position: relative;
    width: 280px;
    height: 560px;
    animation: floatShowcase 5s ease-in-out infinite;
}

@keyframes floatShowcase {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.testimonials {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .section__subtitle,
.testimonials .section__title,
.testimonials .section__description {
    color: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-card__avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-card__info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-card__info span {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-card__rating {
    margin-bottom: 15px;
}

.testimonial-card__rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-card__text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card__quote {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 40px;
    color: var(--gray-200);
}

.download-cta {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.download-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e88e5' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.download-cta__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-cta__text .section__subtitle,
.download-cta__text .section__title {
    color: var(--white);
    text-align: left;
}

.download-cta__description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.download-cta__buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.download-cta__qr {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.qr-code {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--dark);
    flex-shrink: 0;
}

.download-cta__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-cta__logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.faq {
    background: var(--gray-50);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
    gap: 15px;
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__question span {
    flex: 1;
    min-width: 0;
}

.faq-item__question i {
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-item__question i {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact {
    background: var(--white);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info .section__subtitle,
.contact__info .section__title {
    text-align: left;
}

.contact__description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-item__text {
    flex: 1;
    min-width: 0;
}

.contact-item__text span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-item__text strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    word-break: break-word;
    line-height: 1.5;
}

.contact__app-links {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.contact__app-links p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact__app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact__form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    overflow-x: hidden;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer__app-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer__app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer__app-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__links h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__links a i {
    font-size: 16px;
}

.footer__bottom {
    padding-top: 30px;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.floating-download {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-download.show {
    opacity: 1;
    visibility: visible;
}

.floating-download__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
}

.floating-download__btn--apple {
    background: #000000;
}

.floating-download__btn--google {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%);
}

.floating-download__btn:hover {
    transform: scale(1.1);
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__badge {
        justify-content: center;
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__app-buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        display: none;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-showcase__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-showcase__text .section__subtitle,
    .app-showcase__text .section__title {
        text-align: center;
    }

    .app-showcase__features {
        display: inline-block;
        text-align: left;
    }

    .app-showcase__buttons {
        justify-content: center;
    }

    .app-showcase__image {
        order: -1;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-cta__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-cta__text .section__subtitle,
    .download-cta__text .section__title {
        text-align: center;
    }

    .download-cta__buttons {
        justify-content: center;
    }

    .download-cta__qr {
        justify-content: center;
    }

    .download-cta__image {
        order: -1;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .contact__info .section__subtitle,
    .contact__info .section__title {
        text-align: center;
    }

    .contact__description {
        text-align: center;
    }

    .contact__details {
        align-items: center;
    }

    .contact-item {
        max-width: 400px;
        width: 100%;
    }

    .contact__app-links {
        text-align: center;
    }

    .contact__app-buttons {
        justify-content: center;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__app-buttons {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .section__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section__description {
        font-size: 16px;
    }

    .nav {
        height: 70px;
        padding: 0;
    }

    /* SADECE NAV LOGO BÜYÜTME - MOBİL */
    .nav__logo-img {
        width: 140px;
        height: 140px;
    }

    .nav__logo {
        font-size: 16px;
        gap: 10px;
    }

    .nav__logo span {
        display: none;
    }

    .nav__buttons {
        display: none;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        padding: 80px 30px 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav__link {
        color: var(--text-primary);
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        color: var(--dark);
        font-size: 24px;
        background: var(--gray-100);
        border-radius: 50%;
    }

    /* HAMBURGER MENÜ - ORİJİNAL BOYUT MOBİL */
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .hero {
        padding-top: 70px;
        min-height: 100vh;
        padding-bottom: 0;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero__description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero__badge {
        font-size: 14px;
        padding: 10px 16px;
        display: flex;
        justify-content: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .hero__app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__app-buttons .app-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .stat__number {
        font-size: 28px;
    }

    .stat__label {
        font-size: 12px;
    }

    .hero__scroll {
        display: none;
    }

    .trusted {
        display: none;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-card__icon i {
        font-size: 24px;
    }

    .feature-card__title {
        font-size: 20px;
    }

    .feature-card__description {
        font-size: 14px;
    }

    .steps {
        gap: 20px;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }

    .step:hover {
        transform: translateY(-5px) !important;
    }

    .step__number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step__title {
        font-size: 18px;
    }

    .step__description {
        font-size: 14px;
    }

    .step__icon {
        width: 60px;
        height: 60px;
    }

    .step__icon i {
        font-size: 24px;
    }

    .app-showcase__content {
        gap: 40px;
    }

    .app-showcase__description {
        font-size: 16px;
    }

    .app-showcase__features li {
        font-size: 14px;
        padding: 10px 0;
    }

    .app-showcase__buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-showcase__buttons .app-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .phone-mockup--showcase {
        width: 220px;
        height: 440px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card__header {
        gap: 12px;
    }

    .testimonial-card__avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .testimonial-card__info h4 {
        font-size: 16px;
    }

    .testimonial-card__info span {
        font-size: 13px;
    }

    .testimonial-card__text {
        font-size: 14px;
    }

    .testimonial-card__quote {
        font-size: 30px;
        bottom: 15px;
        right: 15px;
    }

    .download-cta__content {
        gap: 30px;
    }

    .download-cta__description {
        font-size: 16px;
    }

    .download-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-cta__buttons .app-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .download-cta__qr {
        flex-direction: column;
        text-align: center;
    }

    .download-cta__logo {
        width: 120px;
        height: 120px;
    }

    .faq-item__question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-item__answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .contact__wrapper {
        gap: 40px;
    }

    .contact__info .section__subtitle,
    .contact__info .section__title {
        text-align: left;
    }

    .contact__description {
        font-size: 15px;
        text-align: left;
    }

    .contact__details {
        gap: 20px;
        align-items: flex-start;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        max-width: 100%;
    }

    .contact-item__icon {
        width: 50px;
        height: 50px;
    }

    .contact-item__icon i {
        font-size: 18px;
    }

    .contact-item__text {
        text-align: left;
    }

    .contact-item__text span {
        font-size: 13px;
    }

    .contact-item__text strong {
        font-size: 14px;
    }

    .contact__app-links {
        text-align: left;
    }

    .contact__app-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .contact__form-wrapper {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo {
        justify-content: center;
        font-size: 18px;
    }

    .footer__description {
        font-size: 13px;
    }

    .footer__app-buttons {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        text-align: center;
    }

    .footer__links h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer__links a {
        justify-content: center;
        font-size: 13px;
    }

    .footer__links a:hover {
        padding-left: 0;
    }

    .footer__bottom p {
        font-size: 12px;
    }

    .floating-download {
        bottom: 15px;
        right: 15px;
    }

    .floating-download__btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 50px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 24px;
    }

    .section__subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .section__description {
        font-size: 14px;
    }

    .nav {
        height: 60px;
    }

    .nav__logo {
        font-size: 14px;
        gap: 8px;
    }

    /* SADECE NAV LOGO BÜYÜTME - KÜÇÜK MOBİL */
    .nav__logo-img {
        width: 120px;
        height: 120px;
    }

    .nav__logo span {
        display: none;
    }

    /* HAMBURGER MENÜ - ORİJİNAL BOYUT KÜÇÜK MOBİL */
    .nav__toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav__menu {
        width: 100%;
        max-width: 100%;
        padding: 70px 20px 30px;
    }

    .nav__close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .nav__list {
        gap: 20px;
    }

    .nav__link {
        font-size: 16px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero__badge {
        font-size: 13px;
        padding: 8px 14px;
        margin-bottom: 15px;
    }

    .hero__title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .hero__description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero__app-buttons {
        margin-bottom: 30px;
    }

    .hero__app-buttons .app-store-btn {
        max-width: 100%;
        padding: 10px 16px;
    }

    .app-store-btn__icon {
        font-size: 22px;
    }

    .app-store-btn__text span {
        font-size: 10px;
    }

    .app-store-btn__text strong {
        font-size: 14px;
    }

    .hero__stats {
        gap: 15px;
    }

    .stat {
        min-width: 70px;
    }

    .stat__number {
        font-size: 24px;
    }

    .stat__label {
        font-size: 11px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-card__icon {
        width: 50px;
        height: 50px;
    }

    .feature-card__icon i {
        font-size: 20px;
    }

    .feature-card__title {
        font-size: 18px;
    }

    .feature-card__description {
        font-size: 13px;
    }

    .step {
        padding: 20px 15px;
    }

    .step__number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step__title {
        font-size: 16px;
    }

    .step__description {
        font-size: 13px;
    }

    .step__icon {
        width: 50px;
        height: 50px;
    }

    .step__icon i {
        font-size: 20px;
    }

    .phone-mockup--showcase {
        width: 180px;
        height: 360px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-card__avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonial-card__info h4 {
        font-size: 15px;
    }

    .testimonial-card__info span {
        font-size: 12px;
    }

    .testimonial-card__text {
        font-size: 13px;
    }

    .download-cta__logo {
        width: 100px;
        height: 100px;
    }

    .qr-code {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .faq-item__question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-item__answer p {
        padding: 0 15px 15px;
        font-size: 13px;
    }

    .contact-item__icon {
        width: 45px;
        height: 45px;
    }

    .contact-item__icon i {
        font-size: 16px;
    }

    .contact__form-wrapper {
        padding: 20px 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer__logo {
        font-size: 16px;
    }

    .footer__logo-img {
        width: 40px;
        height: 40px;
    }

    .footer__app-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .floating-download__btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 70px;
    }
}

@media screen and (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .nav__logo span {
        display: none;
    }

    /* SADECE NAV LOGO BÜYÜTME - ÇOK KÜÇÜK MOBİL */
    .nav__logo-img {
        width: 100px;
        height: 100px;
    }

    /* HAMBURGER MENÜ - ORİJİNAL BOYUT ÇOK KÜÇÜK MOBİL */
    .nav__toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__description {
        font-size: 13px;
    }

    .section__title {
        font-size: 22px;
    }

    .stat__number {
        font-size: 22px;
    }

    .stat__label {
        font-size: 10px;
    }
}