/* ========================================
   NEWBIE - Modern Mentorluk Platformu
   I am still learning
   ======================================== */

/* ========================================
   SPLASH SCREEN
   ======================================== */

#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #05060d;
    display: flex;
    align-items: center;
    justify-content: center;
}


#space-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.splash-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: splashFadeIn 1.2s ease forwards;
}

@keyframes splashFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.splash-logo {
    width: 120px;
    height: auto;
    animation: floatLogo 4s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.splash-text {
    width: 280px;
    height: auto;
    margin-bottom: 48px;
}

#splash-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 9999px;
    padding: 15px 44px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Capriola', system-ui, sans-serif;
    cursor: pointer;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 0 0 rgba(255,255,255,0),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transition: background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease, transform 0.2s ease;
    overflow: hidden;
}

#splash-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

#splash-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.18),
        0 0 60px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: scale(1.04);
}

#splash-btn:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.1);
}

/* CSS Variables */
:root {
    --primary: #131922;
    --primary-light: #1e2633;
    --primary-dark: #0a0e14;
    --secondary: #4f6ef7;
    --secondary-light: #6b85f9;
    --secondary-dark: #3a56d4;
    --accent: #00d4aa;
    --accent-light: #33debb;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f1f3f8;
    --gray-200: #e5e8f0;
    --gray-300: #d1d5e0;
    --gray-400: #9aa3b8;
    --gray-500: #6b7589;
    --gray-600: #4a5368;
    --gray-700: #343c4f;
    --text-primary: #131922;
    --text-secondary: #6b7589;
    --text-muted: #9aa3b8;
    --gradient-primary: linear-gradient(135deg, #4f6ef7 0%, #6b85f9 50%, #00d4aa 100%);
    --gradient-dark: linear-gradient(135deg, #131922 0%, #1e2633 100%);
    --gradient-hero: linear-gradient(135deg, #f8f9fc 0%, #e5e8f0 100%);
    --shadow-sm: 0 1px 2px rgba(19, 25, 34, 0.05);
    --shadow-md: 0 4px 12px rgba(19, 25, 34, 0.1);
    --shadow-lg: 0 10px 40px rgba(19, 25, 34, 0.15);
    --shadow-xl: 0 20px 60px rgba(19, 25, 34, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(19, 25, 34, 0.25);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 25, 34, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(248, 249, 252, 0.85);
    border-bottom-color: rgba(225, 232, 240, 0.5);
    box-shadow: var(--shadow-sm);
}

.header .nav-link {
    color: var(--text-primary);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--text-primary);
}

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

.nav-logo img {
    height: 60px;
    width: auto;
}

.header.scrolled .nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--secondary);
    background: rgba(79, 110, 247, 0.1);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--text-primary);
    background: var(--gray-100);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 120px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(79, 110, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(79, 110, 247, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat .stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.hero-stat .stat-number--dash::after {
    content: none;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

/* Hero: uygulama görseli, çerçevesiz, büyük, yumuşak gölge */
.hero-app-img {
    max-width: clamp(260px, 30vw, 360px);
    width: 100%;
    height: auto;
    display: block;
    max-height: min(72vh, 620px);
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(19, 25, 34, 0.12), 0 4px 16px rgba(19, 25, 34, 0.06);
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.app-header-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.app-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.app-greeting span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.app-greeting small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.app-search-mock {
    padding: 14px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.app-cards-mock {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mentor-card-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.mentor-avatar-mock {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f6ef7, #6b85f9);
    border-radius: 50%;
}

.mentor-info-mock {
    flex: 1;
}

.mentor-info-mock span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.mentor-info-mock small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.rating-mock {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #f59e0b;
}

.app-nav-mock {
    display: flex;
    justify-content: space-around;
    padding: 16px 0 8px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.nav-item-mock {
    font-size: 1.25rem;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.nav-item-mock.active {
    opacity: 1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    animation: float 4s ease-in-out infinite;
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-card.card-1 {
    top: 60px;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 180px;
    left: -20px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 60px;
    right: -10px;
    animation-delay: 2s;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   MAIN FEATURE SECTIONS (AI Danışman, Deneyimler, etc.)
   ======================================== */
.main-feature {
    padding: 120px 0;
    background: var(--white);
}

.main-feature.alt {
    background: var(--gray-50);
}

.main-feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 80px;
    align-items: center;
}

.main-feature-wrapper.reverse {
    direction: rtl;
}

.main-feature-wrapper.reverse>* {
    direction: ltr;
}

.main-feature-content {
    max-width: 600px;
}

.main-feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 24px 0 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-list li svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.main-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Özellik bölümleri: çerçevesiz, büyük uygulama görseli, yumuşak gölge */
.feature-app-img {
    max-width: clamp(280px, 32vw, 380px);
    width: 100%;
    height: auto;
    display: block;
    max-height: min(70vh, 680px);
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(19, 25, 34, 0.12), 0 4px 16px rgba(19, 25, 34, 0.06);
}

.feature-mockup {
    width: 320px;
    height: 640px;
    background: var(--primary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
}

.mockup-screen:has(.feature-screenshot-img) {
    padding: 0;
}

.feature-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* AI Danışman Mockup */
.ai-chat-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.ai-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-header strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.ai-header small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ai-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    overflow-y: auto;
}

.message {
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.ai-msg {
    background: var(--gray-100);
    color: var(--text-primary);
    align-self: flex-start;
}

.message.user-msg {
    background: var(--secondary);
    color: var(--white);
    align-self: flex-end;
}

.ai-input {
    padding: 14px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Deneyimler Mockup */
.experience-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.exp-header h4 {
    font-size: 1.25rem;
    color: var(--primary);
}

.exp-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
}

.exp-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.exp-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.exp-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.exp-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.exp-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mentörlük Mockup */
.mentor-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mentor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mentor-header h4 {
    font-size: 1.25rem;
    color: var(--primary);
}

.mentor-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
}

.mentor-item-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.mentor-img {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.mentor-details {
    flex: 1;
}

.mentor-details strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.mentor-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.mentor-rating {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Topluluklar Mockup */
.community-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.community-header h4 {
    font-size: 1.25rem;
    color: var(--primary);
}

.community-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
}

.community-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.community-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.community-card strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.community-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--gray-50);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.step:nth-child(even) {
    direction: rtl;
}

.step:nth-child(even)>* {
    direction: ltr;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--secondary);
}

.step-connector {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    margin-left: 39px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    background: var(--white);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.benefit-column {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-header {
    margin-bottom: 32px;
}

.benefit-header h3 {
    font-size: 1.5rem;
    margin-top: 12px;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.benefit-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.benefit-header.mentor .benefit-badge {
    background: rgba(79, 110, 247, 0.1);
    color: var(--secondary);
}

.benefit-header.mentee .benefit-badge {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.benefit-list li {
    display: flex;
    gap: 16px;
}

.benefit-list .benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.benefit-list strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-list p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-title {
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--gray-50);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   SCREENSHOTS SECTION
   ======================================== */
.screenshots {
    background: var(--white);
}

.screenshots-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(12px, 2vw, 24px);
    flex-wrap: nowrap;
}

.screenshot-item {
    flex: 1 1 0;
    min-width: 0;
    max-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-phone {
    width: 100%;
    aspect-ratio: 390 / 844;
    border-radius: 22px;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: 0 8px 32px rgba(19, 25, 34, 0.1), 0 2px 8px rgba(19, 25, 34, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screenshot-item:hover .screenshot-phone {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(19, 25, 34, 0.14), 0 4px 12px rgba(19, 25, 34, 0.08);
}

.screenshot-caption {
    display: block;
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Ekran görüntüleri: sabit telefon çerçevesi, görsel kırpma ile aynı boyut */
.screenshot-img-plain {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.phone-mockup-small {
    width: 180px;
    height: 360px;
    background: var(--primary);
    border-radius: 28px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.phone-mockup-small:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.screenshot-frame {
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    height: 100%;
    min-height: 344px;
}

.screenshot-frame .screenshot-img {
    width: 100%;
    height: 100%;
    min-height: 344px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    padding: 12px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mock-content h4 {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.mock-card {
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.mock-card.small {
    height: 40px;
}

.mentor-list-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mentor-item {
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.chat-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-bubble {
    height: 40px;
    border-radius: var(--radius-md);
}

.chat-bubble.user,
.chat-bubble.me {
    width: 70%;
    background: var(--secondary);
    margin-left: auto;
}

.chat-bubble.ai,
.chat-bubble.other {
    width: 80%;
    background: var(--gray-100);
}

.chat-bubble.small {
    height: 28px;
    width: 50%;
}

.profile-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.profile-info {
    width: 80%;
    height: 30px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.profile-stats {
    width: 100%;
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
}

.faq-icon {
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download {
    position: relative;
    background: var(--gradient-dark);
    padding: 100px 0;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(79, 110, 247, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 212, 170, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.download-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.download-content h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-content>p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.store-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.store-button svg {
    width: 28px;
    height: 28px;
}

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

.store-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.store-text strong {
    font-size: 1.1rem;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-code {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-lg);
}

.qr-section span {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column */
.about-left {
    max-width: 550px;
}

.about-breadcrumb {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.about-breadcrumb:hover {
    color: var(--secondary-dark);
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 24px;
    line-height: 1.2;
}

.about-story {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: var(--secondary);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.value-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Right Column - Dark Quote Card */
.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-card-dark {
    background: linear-gradient(135deg, #1e2633 0%, #131922 100%);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    width: 100%;
}

.quote-card-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(79, 110, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.quote-icon-large {
    font-size: 4rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-text-dark {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.quote-author-dark {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-item a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand>p:first-of-type {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 0.95rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* AOS Animation Fallback */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .floating-card {
        display: none;
    }

    .main-feature-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .main-feature-wrapper.reverse {
        direction: ltr;
    }

    .main-feature-content {
        max-width: 100%;
        text-align: center;
    }

    .main-feature-visual {
        order: -1;
    }

    .hero-app-img {
        max-width: 340px;
        margin: 0 auto;
    }

    .feature-app-img {
        max-width: 360px;
        margin: 0 auto;
    }

    .screenshots-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        padding-bottom: 8px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .screenshot-item {
        flex: 0 0 min(30vw, 168px);
        max-width: 168px;
        min-width: 120px;
        scroll-snap-align: start;
    }

    .feature-mockup {
        width: 280px;
        height: 560px;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
    }

    .nav-buttons.active {
        display: flex;
        position: absolute;
        top: calc(80px + var(--menu-height, 300px));
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 24px;
        gap: 12px;
        box-shadow: var(--shadow-lg);
    }

    section {
        padding: 60px 0;
    }

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

    .main-feature {
        padding: 80px 0;
    }

    .hero-app-img {
        max-width: 280px;
    }

    .feature-app-img {
        max-width: 300px;
    }

    .screenshots-wrapper {
        gap: 10px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .screenshot-item {
        flex: 0 0 min(34vw, 150px);
        min-width: 108px;
        max-width: 150px;
    }

    .feature-mockup {
        width: 240px;
        height: 480px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-stat .stat-number {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-icon {
        display: none;
    }

    .step-connector {
        margin-left: 29px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-mockup-small {
        width: 140px;
        height: 280px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .screenshots-wrapper {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .benefit-column {
        padding: 24px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}