:root {
    --primary: #005f4e;
    --primary-dark: #004236;
    --primary-light: #007f69;
    --accent: #00d4aa;
    --accent-glow: rgba(0, 212, 170, 0.5);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --bg-main: #00120f;
    /* 00120f */
    /* darker, more premium background */
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-lg: 24px;
    --font-family: "Feature Display Web Regular", "Feature Display Web Regular Placeholder", "Outfit", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('1.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    body::before {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('photo.png') no-repeat center center;
        background-size: cover;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00120f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.4));
    animation: preloaderPulse 2.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0% {
        transform: scale(0.9);
        filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.2));
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(0, 212, 170, 0.6));
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.2));
        opacity: 0.8;
    }
}

/* --- Snow Particles --- */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.snow-particle {
    position: absolute;
    background: rgb(214, 185, 128);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

#bottom-blur {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: linear-gradient(to top, rgba(0, 18, 15, 0.5), transparent);
    z-index: 999;
    pointer-events: none;
    mask-image: linear-gradient(to top, black 30%, transparent);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent);
}

@media (max-width: 768px) {
    #bottom-blur {
        height: 70px;
        mask-image: linear-gradient(to top, black 40%, transparent);
        -webkit-mask-image: linear-gradient(to top, black 40%, transparent);
    }
}

@keyframes snowDrift {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translate(60px, 60px);
        opacity: 0;
    }
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.2;
    color: white;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400 !important;
}

/* --- Main Content --- */
main {
    position: relative;
    overflow: visible;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}



/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.1s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem 0;
}

#navbar.scrolled {
    padding: 1rem 0;
}

#navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    /* White background */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 0.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 1rem auto 0;
    width: 85%;
}

#navbar.scrolled .logo,
#navbar.scrolled .nav-links a,
#navbar.scrolled .mobile-menu-btn {
    color: var(--primary-dark);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--primary);

}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: all 0.24s ease;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: start;
}

.logo-img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}



.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    display: none;
    width: 18px;
    height: 18px;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.btn-primary.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}



/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 6rem 2rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    width: 100%;
}

.hero-container h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 500;
}

.hero-container p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Transformation Section */
.transformation-section {
    padding: 0rem 0rem;
    text-align: center;
    position: relative;
    overflow: visible;
    height: 200vh;
    /* Allow logos to bleed out if needed */
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    /* Ekranı kapla */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 100;
    /* Yanlardan çıkan logolar scroll bar oluşturmasın */
}

/* Sahne 1: Mevcut İçerik */
.phase-1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    transition: opacity 0.1s linear;
    z-index: 1;
}

/* Sahne 2: Kedy Reveal */
.phase-2-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    /* Başlangıçta gizli */
    z-index: 2;
    pointer-events: none;
    /* Görünmezken tıklamayı engelle */
}

.reveal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    filter: blur(40px);
    z-index: -1;
    transition: opacity 0.5s ease;
}

.reveal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reveal-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.4));
    transform: scale(0.8);
    transition: transform 0.1s linear;
}

.reveal-title {
    font-size: 6rem;
    color: white;
    font-weight: normal;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.reveal-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
    opacity: 0.9;
}

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

.over-text {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.7;
    text-transform: lowercase;
}

.headline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    /* increased gap to give room for logos */
    position: relative;
}

.headline-wrapper h1 {
    font-size: 4rem;
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 0;
    z-index: 2;
    font-weight: 500;
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    width: 120px;
    height: 120px;
    transition: transform 0.1s linear;
    /* Smooth hareket için */
}

.cloud-logo {
    width: 70px;
    border-radius: 10px;
    height: 70px;
    object-fit: contain;
    /* Invert if they are dark on dark */
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(var(--offset-x, 0), var(--offset-y, 0));
    animation: float 6s ease-in-out infinite;
}

.cloud-logo:nth-child(even) {
    animation-delay: -2s;
}

.cloud-logo:nth-child(3n) {
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(var(--offset-x, 0), var(--offset-y, 0));
    }

    50% {
        transform: translate(var(--offset-x, 0), calc(var(--offset-y, 0) - 15px));
    }
}

/* Specific logos might need different treatment if they are already white or have colors */

.cloud-logo:hover {
    filter: none;
    opacity: 1;
    transform: translate(var(--offset-x, 0), var(--offset-y, 0)) scale(1.3);
}

@media (max-width: 1024px) {
    .headline-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .headline-wrapper h1 {
        font-size: 3rem;
    }

    .logo-cloud {
        order: 2;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .logo-cloud.left {
        order: 2;
    }

    .logo-cloud.right {
        order: 3;
    }

    .cloud-logo {
        transform: none !important;
        width: 60px;
        height: 60px;
    }

    .transformation-section {
        padding: 2rem 1.5rem;
    }

    .reveal-title {
        font-size: 2.8rem;
    }

    .reveal-desc {
        font-size: 1.1rem;
    }

    .over-text {
        font-size: 0.9rem;
    }
}

/* --- New Sections Styling --- */

/* Section Container & Headers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    font-weight: 500;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.section-label {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 300 !important;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 2rem;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.step-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.step-icon i {
    width: 36px;
    height: 36px;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 2rem;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 95, 78, 0.3), rgba(0, 127, 105, 0.5));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.solution-icon i {
    width: 28px;
    height: 28px;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.05);
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 95, 78, 0.05) 0%, rgba(0, 18, 15, 0) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Waitlist Section */
.waitlist-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0rem;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease forwards;
}

.waitlist-logo {
    margin-bottom: 2.5rem;
}

.waitlist-logo .logo-img {
    height: 100px;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.waitlist-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.waitlist-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

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

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

.success-message {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2rem;
}

.success-message.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px var(--accent-glow);
}

.success-icon i {
    width: 32px;
    height: 32px;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.success-message p {
    color: var(--text-muted);
}

.waitlist-container.submitted .waitlist-form,
.waitlist-container.submitted h1,
.waitlist-container.submitted p:not(.success-message p) {
    display: none;
}

/* Footer Refined */
footer {
    padding: 1rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.footer-links-group {
    display: flex;
    gap: 5rem;
}

.link-col h4 {
    font-weight: normal;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    color: white;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.link-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent);
}

.footer-logo {
    height: 40px;
}

@media (max-width: 768px) {

    .stats-grid,
    .comparison-grid,
    .faq-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
        text-align: left;
    }

    .link-col {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .waitlist-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0 1rem;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .waitlist-form input {
        background: rgba(255, 255, 255, 0.05);
        padding: 1.2rem 1.5rem;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .waitlist-form .btn-primary {
        width: 100%;
        padding: 1.2rem;
    }

    .waitlist-logo {
        display: flex;
        justify-content: center;
    }

    .waitlist-logo .logo-img {
        height: 70px;
    }

    .hero-container h1 {
        font-size: 3rem;
    }

    .hero-section {
        padding: 8rem 1.5rem 4rem;
    }

    .reveal-title {
        font-size: 3.5rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .reveal-logo {
        height: 60px;
    }

    .reveal-desc {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .headline-wrapper h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .headline-wrapper {
        gap: 2rem;
    }

    .transformation-section {
        padding: 0rem 0rem;
        height: 150vh;
    }

    .over-text {
        font-size: 0.85rem;
    }

    .cloud-logo {
        width: 50px;
        height: 50px;
    }

    .logo-cloud {
        gap: 1.5rem;
    }
}

/* --- MODERN MOBİL MENÜ (Full Revize) --- */
@media (max-width: 768px) {

    /* Başlık ayarı */
    h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    /* Linkleri Kapsayan Alan (Overlay) - Sola dayalı, hafif boşluklu panel */
    .nav-links {
        position: fixed;
        top: 80px;
        /* Navbar'ın altında */
        left: 1.5rem;
        width: calc(100% - 3rem);
        max-width: 260px;
        height: auto;
        background: rgba(0, 18, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.2rem;
        gap: 0.5rem;
        z-index: 2000;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateX(-20px) scale(0.95);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0) scale(1);
    }

    /* Linklerin içindeki iconları göster */
    .nav-links a i {
        display: block;
        color: var(--accent);
    }

    /* Linklerin stilini panel için güncelle */
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9) !important;
        width: 100%;
        padding: 0.9rem 1.2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent) !important;
    }

    /* Staggered Animation on Open */
    .nav-links.active a {
        animation: linkSlideIn 0.4s ease forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.3s;
    }

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

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--primary);
        z-index: 2001;
        color: white;
        transition: all 0.3s ease;
    }

    #navbar.scrolled .mobile-menu-btn {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    body.no-scroll .mobile-menu-btn {
        background: var(--accent);
        border-color: var(--accent);
    }

    /* New Sections Mobile Responsive */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .how-it-works-section,
    .solutions-section,
    .stats-section {
        padding: 3rem 1.5rem;
    }

    .steps-grid,
    .solutions-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-card,
    .solution-card,
    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .step-card h3,
    .solution-card h3 {
        font-size: 1.3rem;
    }

    .problem-section {
        padding: 0rem 0rem !important;
    }
}

/* --- Process Flow Animation --- */
.process-flow-section {
    padding: 6rem 2rem;
    position: relative;
}

.process-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    z-index: 2;
}

.node-icon {
    width: 140px;
    height: 140px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.node-icon:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 50px var(--accent-glow);
}

.agent-node img {
    width: 65%;
    height: auto;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 40px;
    animation: pulseNode 3s infinite;
}

@keyframes pulseNode {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.llm-cluster {
    position: relative;
    width: 140px;
    height: 140px;
}

.llm-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: floatNode 4s ease-in-out infinite;
    z-index: 2;
}

.llm-node img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.node-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    bottom: 5%;
    left: -10px;
    animation-delay: -1.3s;
}

.node-3 {
    bottom: 5%;
    right: -10px;
    animation-delay: -2.6s;
}

@keyframes floatNode {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5px, -10px) rotate(2deg);
    }

    66% {
        transform: translate(-5px, -5px) rotate(-2deg);
    }
}

.dataset-node {
    color: var(--accent);
}

.dataset-node i {
    width: 56px;
    height: 56px;
}

.flow-connector {
    flex: 2;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connector-path {
    stroke: rgba(0, 212, 170, 0.15);
    stroke-width: 4;
    stroke-linecap: round;
}

.data-dash {
    stroke: var(--accent);
    stroke-width: 4;
    stroke-dasharray: 20, 180;
    stroke-linecap: round;
    animation: flowData 1.5s linear infinite;
    filter: drop-shadow(0 0 8px var(--accent)) drop-shadow(0 0 15px var(--accent-glow));
}

@keyframes flowData {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.node-info {
    text-align: center;
    margin-top: 0.5rem;
}

.node-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: white;
    font-weight: 500;
}

.node-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .process-flow-container {
        flex-direction: column;
        gap: 6rem;
    }

    .flow-connector {
        transform: rotate(90deg);
        height: 150px;
        width: 80px;
    }
}

/* --- Problem Section --- */
.problem-section {
    margin-top: 12vh;
    padding: 0rem 2rem;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.problem-card {
    background: rgba(255, 59, 48, 0.03);
    border: 1px solid rgba(255, 59, 48, 0.1);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 59, 48, 0.05);
    border-color: rgba(255, 59, 48, 0.2);
    transform: translateY(-5px);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-weight: 400 !important;
}

/* --- Highlighter Effect --- */
.highlight-red {
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.highlight-red::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 5%;
    width: 110%;
    height: 60%;
    background: rgba(255, 59, 48, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
    filter: blur(1px);
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 6rem 2rem;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.comparison-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.comparison-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.comparison-card.kedy {
    border-color: rgba(0, 212, 170, 0.3);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.status-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.status-badge.manual {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge.autonomous {
    background: rgba(0, 212, 170, 0.2);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 170, 0.4);
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
}

.card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list.bad li i {
    color: #ff3b30;
    width: 20px;
}

.feature-list.good li i {
    color: var(--accent);
    width: 20px;
}

.highlight-green {
    position: relative;
    z-index: 1;
}

.highlight-green::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 5%;
    width: 110%;
    height: 40%;
    background: rgba(0, 212, 170, 0.2);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
    filter: blur(2px);
}

@media (max-width: 900px) {
    .comparison-section {
        padding: 4rem 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image-wrapper {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .card-img {
        object-fit: contain;
    }

    .comparison-card h3 {
        font-size: 1.5rem;
    }

    .comparison-vs {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -1rem auto;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}