/*
Theme Name: Dopifuture
Theme URI: https://dopifuture.com
Author: 97.team
Author URI: https://97.team
Description: A premium HTML landing page theme for dopifuture — AI-powered mobile learning platform. Modern, responsive, carousel-ready.
Version: 1.0.0
License: All Rights Reserved
*/

/* ---------- Local Fonts ---------- */

/* Inter — Latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/Inter-Latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter — Latin Extended */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/Inter-LatinExt.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Manrope Bold — Latin */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Manrope-Bold-Latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Manrope Bold — Latin Extended */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Manrope-Bold-LatinExt.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0a0a0a;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* ============================================
   1. HEADER / NAVBAR
   ============================================ */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
    overflow: visible;
}

.navbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    flex-shrink: 0;
}

.navbar__logo img {
    height: 32px;
    width: auto;
}

.navbar__nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.navbar__link {
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar__link:hover {
    color: #9234ea;
}

.navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 60;
    margin-left: auto;
}

.navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0A0A0A;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger X state */
.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 49;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0A0A0A;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: #9234EA;
}

.mobile-menu__cta {
    margin-top: 16px;
}

.mobile-menu__cta .btn-signup {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 16px;
}

/* Mobile menu — Features toggle */
.mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu__chevron {
    transition: transform 0.3s ease;
}

.mobile-menu__toggle.open .mobile-menu__chevron {
    transform: rotate(180deg);
}

.mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 8px;
}

.mobile-menu__toggle.open+.mobile-menu__sub {
    max-height: 500px;
}

.mobile-menu__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: #0A0A0A;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu__feature:hover {
    color: #9234EA;
}

.mobile-menu__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu__feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.mobile-menu__section {
    padding-bottom: 0;
}

.navbar__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-signup {
    background-color: #9234ea;
    color: #f2e6ff;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-signup:hover {
    background-color: #7e22ce;
}

/* ---------- Features Dropdown ---------- */
.navbar__dropdown {
    position: relative;
}

.navbar__link--features {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__chevron {
    transition: transform 0.3s ease;
    width: 12px;
    height: 8px;
}

.navbar__dropdown:hover .navbar__chevron,
.navbar__dropdown.open .navbar__chevron {
    transform: rotate(180deg);
}

.features-dropdown {
    position: fixed;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 1216px;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.navbar__dropdown:hover .features-dropdown,
.navbar__dropdown.open .features-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.features-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.features-card {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    border-radius: 14px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.features-card:hover {
    background-color: #F9FAFB;
}

.features-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.features-card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.features-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: #101828;
    margin: 0;
}

.features-card__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.15px;
    color: #6A7282;
    margin: 0;
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 576px;
    z-index: 10;
    position: relative;
}

.hero__title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.025em;
}

.hero__text {
    font-size: 18px;
    line-height: 1.625;
    color: rgba(0, 0, 0, 0.6);
    max-width: 448px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
}

.btn-cta {
    background-color: #9234ea;
    color: #f2e6ff;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-cta:hover {
    background-color: #7e22ce;
}

.hero__visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.hero__image-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   3. FEATURES SECTION
   ============================================ */
.features-section {
    background-color: #ffffff;
    padding: 40px 64px;
}

.features-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
}

.features-header__title {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    align-self: stretch;
}

.features-header__subtitle {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    align-self: stretch;
}

/* Features Carousel */
.features-carousel {
    width: 100%;
    max-width: 1280px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.features-page {
    display: contents;
}

.features-page:last-child {
    margin-bottom: 0;
}

.features-dots {
    display: none;
}

.feature-card {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
    height: 216px;
}

.feature-card--orange {
    background-color: #fff7ed;
}

.feature-card--blue {
    background-color: #f0f9ff;
}

.feature-card--green {
    background-color: #f0fdf4;
}

.feature-card--purple {
    background-color: #f5f3ff;
}

.feature-card--cyan {
    background-color: #f0ffff;
}

.feature-card--pink {
    background-color: #fff3fc;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
}

.feature-card__body>*+* {
    margin-top: 12px;
}

.feature-card__title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #000000;
}

/* Video Section */
.video-section {
    width: 100%;
    max-width: 1312px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 48px;
    margin-bottom: 48px;
    cursor: pointer;
}

.video-section img.video-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.video-section__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.video-section:hover .video-section__overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.video-section__play {
    width: 64px;
    height: 64px;
    transition: transform 0.3s;
}

.video-section:hover .video-section__play {
    transform: scale(1.1);
}

.video-section__video {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ============================================
   4. PRODUCT TABS
   ============================================ */

/* Tabs Container */
.product-tabs {
    width: 1392px;
    max-width: 100%;
    height: 886px;
    transition: background-color 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 24px;
    padding: 0;
    background-color: #fff7ed;
    background-image: url('../images/mission-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dekoratif elemanlar */
.decor-signpost-left {
    position: absolute;
    width: 232px;
    height: 232px;
    left: -35px;
    top: 656px;
    transform: rotate(14.85deg);
    pointer-events: none;
    z-index: 1;
}

.decor-signpost-right {
    position: absolute;
    width: 177px;
    height: 177px;
    left: 1195px;
    top: 709px;
    transform: rotate(-10.71deg);
    pointer-events: none;
    z-index: 1;
}

.decor-road {
    position: absolute;
    width: 630px;
    height: 630px;
    left: 807px;
    top: 442px;
    opacity: 0.39;
    transform: rotate(26.54deg);
    pointer-events: none;
    z-index: 0;
}

.decor-character {
    position: absolute;
    height: 207px;
    width: auto;
    left: 78.02%;
    top: 659px;
    pointer-events: none;
    z-index: 2;
}

/* Pill Navigation */
.pill-nav {
    position: absolute;
    height: 62px;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.pill-nav__bar {
    background-color: #ff8904;
    border-radius: 24px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 62px;
    transition: background-color 0.4s ease;
}

.pill-nav__item {
    color: #ffffff;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pill-nav__item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pill-nav__item--active {
    background-color: #ffffff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
}

.pill-nav__item--active span {
    color: #0a0a0a;
    font-weight: 600;
}

.pill-nav__item span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    text-align: center;
}

/* Tab Panels */
.product-tabs__panels {
    position: absolute;
    width: 1232px;
    height: 746px;
    left: calc(50% - 1232px / 2);
    top: 60px;
    overflow: hidden;
}

.product-panel {
    display: none;
}

.product-panel--active {
    display: block;
    animation: slideInRight 0.5s ease both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Section Base */
.product-section {
    padding: 96px 0;
}

.product-section--orange {
    background-color: #fff7ed;
}

.product-section--blue {
    background-color: #f0f9ff;
}

.product-section--purple {
    background-color: #f5f3ff;
}

.product-section--pink {
    background-color: #fff3fc;
}

.product-section--green {
    background-color: #f0fdf4;
}

.product-section__inner {
    width: 1184px;
    height: 492px;
    position: absolute;
    left: 24px;
    top: 190px;
}

.product-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.product-layout--image-first {
    flex-direction: row;
}

.product-content {
    flex: 1;
    min-width: 0;
    padding: 30px 0 40px 24px;
    box-sizing: border-box;
}

.product-content>*+* {
    margin-top: 24px;
}

.product-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-label img {
    width: 24px;
    height: 24px;
}

.product-label span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.product-label--orange span {
    color: #ff6900;
}

.product-label--blue span {
    color: #00bcff;
}

.product-label--purple span {
    color: #7f22fe;
}

.product-label--pink span {
    color: #c322fe;
}

.product-label--green span {
    color: #00a63e;
}

.product-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #0a0a0a;
    max-width: 626px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 626px;
}

.product-features__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.product-features__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.6);
}

.product-actions {
    padding-top: 24px;
}

.btn-product {
    color: #ffffff;
    width: 142px;
    height: 58px;
    padding: 0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    transition: background-color 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-product--orange {
    background-color: #f97316;
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: #f54900;
}

.btn-product--orange:hover {
    background-color: #ea580c;
}

.btn-product--blue {
    background-color: #0ea5e9;
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: #0284c7;
}

.btn-product--blue:hover {
    background-color: #0284c7;
}

.btn-product--purple {
    background-color: #8b5cf6;
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: #7f22fe;
}

.btn-product--purple:hover {
    background-color: #7c3aed;
}

.btn-product--pink {
    background-color: #ef84ff;
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: #dd22fe;
}

.btn-product--pink:hover {
    background-color: #d946ef;
}

.btn-product--green {
    background-color: #00c950;
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: #00a63e;
}

.btn-product--green:hover {
    background-color: #16a34a;
}

/* Product Visual */
.product-visual {
    width: 413px;
    height: 492px;
    flex: none;
    position: relative;
    overflow: visible;
}

.product-visual__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.product-visual__bg {
    width: 100%;
    height: auto;
}

.product-visual__bg--faded {
    opacity: 0.5;
}

.product-visual__ui {
    position: absolute;
    left: 1px;
    top: 119px;
    width: 422px;
    height: 223px;
}

.product-visual__ui--wide {
    width: 422px;
}

.product-visual__ui--narrow {
    width: 200px;
}

/* Panel-bazlı UI resim pozisyonları */
.product-panel[data-panel="0"] .product-visual__ui {
    left: 1px;
    top: 119px;
    width: 422px;
    height: 223px;
}

.product-panel[data-panel="1"] .product-visual__ui {
    left: -12px;
    top: -62px;
    width: 262px;
    height: 496px;
}

.product-panel[data-panel="2"] .product-visual__ui {
    left: -4px;
    top: -60px;
    width: 260px;
    height: 492px;
}

.product-panel[data-panel="3"] .product-visual__ui {
    left: 74px;
    top: -5px;
    width: 265px;
    height: 502px;
}

.product-panel[data-panel="4"] .product-visual__ui {
    left: 76px;
    top: 0px;
    width: 260px;
    height: 492px;
}

/* ============================================
   5. COMPARISON TABLE
   ============================================ */
.comparison-section {
    background-color: #fcfcfc;
    padding: 40px 0;
}

.comparison-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.comparison-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    min-width: 800px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-row+.comparison-row {
    border-top: 1px solid #e5e7eb;
}

.comparison-cell {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.comparison-cell--header-left {
    background-color: #e8e8e8;
}

.comparison-cell--header-left span {
    color: #0a0a0a;
    font-weight: 700;
}

.comparison-cell--header-right {
    background-color: #f5f3ff;
}

.comparison-cell--header-right span {
    color: #9234ea;
    font-weight: 700;
}

.comparison-cell--left span {
    color: #4a5565;
}

.comparison-cell--right span {
    color: #000000;
    font-weight: 700;
}

/* ============================================
   6. FAQ SECTION
   ============================================ */
.faq-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.faq-section__inner {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Old FAQ styles removed — see new styles below */

/* ============================================
   7. CTA SECTION
   ============================================ */
.cta-section {
    padding: 40px 16px;
    display: flex;
    justify-content: center;
}

.footer-cta {
    text-align: center;
    width: 100%;
    max-width: 1408px;
    height: 563px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background-color: #2C1B49;
    background-image: url('../../assets/images/join-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    color: #FFFFFF;
}

.footer-cta__title {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-cta__actions {
    display: flex;
    justify-content: center;
}

.btn-footer {
    background-color: #9234ea;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-footer:hover {
    background-color: #7c2bd4;
    transform: translateY(-1px);
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
    display: flex;
    justify-content: center;
    padding: 0 16px 32px;
}

.footer__inner {
    width: 100%;
    max-width: 1408px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: flex-start;
}

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #0A0A0A;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column__link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column__link:hover {
    color: #9234EA;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    text-align: right;
}

.footer-brand__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand__copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #9CA3AF;
    margin: 0;
}

.footer-brand__disclaimer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #9CA3AF;
    margin: 0;
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social__icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6B7280;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-social__icon:hover {
    color: #9234EA;
}

/* ============================================
   RESPONSIVE — md: 768px
   ============================================ */
@media (min-width: 768px) {
    .navbar {
        padding: 0 144px;
    }

    .navbar__nav {
        display: flex;
    }

    .navbar__hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }

    .hero {
        padding: 80px 0;
    }

    .hero__inner {
        padding: 0 144px;
        flex-direction: row;
        gap: 0;
    }

    .hero__title {
        font-size: 60px;
    }

    .hero__visual {
        width: auto;
        justify-content: flex-end;
        margin-left: -96px;
    }

    .hero__image-wrapper {
        width: 512px;
        height: 512px;
    }

    .features-section__inner {
        padding: 0 64px;
    }

    .features-header__title {
        font-size: 32px;
    }


    .product-title {
        font-size: 48px;
    }

    .comparison-title {
        font-size: 36px;
    }

    .faq-item {
        padding: 16px 24px;
    }

    .faq-title {
        font-size: 36px;
    }

    .footer__inner {
        padding: 0 64px;
    }

    .footer-cta__title {
        font-size: 48px;
    }

}

/* ============================================
   RESPONSIVE — lg: 1024px
   ============================================ */
@media (min-width: 1024px) {

    .product-layout {
        flex-direction: row;
        gap: 96px;
    }

    .product-layout--reverse {
        flex-direction: row;
    }

    .product-layout--reverse .product-visual {
        order: 1;
    }

    .product-layout--reverse .product-content {
        order: 2;
    }

    .product-layout--image-first {
        flex-direction: row;
    }

    .product-layout--image-first .product-visual {
        order: 1;
    }

    .product-layout--image-first .product-content {
        order: 2;
    }
}

/* ============================================
   5. COMPARISON TABLE
   ============================================ */
.comparison-section {
    padding: 64px 0;
    display: flex;
    justify-content: center;
}

.comparison-section__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 24px;
    gap: 64px;
    width: 1280px;
    max-width: 100%;
    background: #FCFCFC;
    border-radius: 24px;
}

.comparison-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: #0A0A0A;
    margin: 0;
}

.comparison-table-wrapper {
    width: 100%;
    max-width: 1232px;
}

.comparison-table {
    width: 100%;
}

/* Header row */
.comparison-row:first-child {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
}

.comparison-cell--header-left,
.comparison-cell--header-right {
    flex: 1;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
}

.comparison-cell--header-left {
    background: #E8E8E8;
}

.comparison-cell--header-right {
    background: #F5F3FF;
}

.comparison-cell--header-left span,
.comparison-cell--header-right span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
}

.comparison-cell--header-left span {
    color: #0A0A0A;
}

.comparison-cell--header-right span {
    color: #9234EA;
}

/* Body rows */
.comparison-row:not(:first-child) {
    display: flex;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell--left,
.comparison-cell--right {
    flex: 1;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-cell--left span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #4A5565;
}

.comparison-cell--right span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #000000;
}

/* ============================================
   6. FAQ SECTION
   ============================================ */
.faq-section {
    padding: 64px 0;
    display: flex;
    justify-content: center;
}

.faq-section__inner {
    width: 1280px;
    max-width: 100%;
    padding: 0 24px;
}

.faq-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: #0A0A0A;
    margin: 0 0 48px;
}

.faq-list {
    max-width: 1232px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    display: block !important;
    flex-direction: unset !important;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 0 24px;
    border: none;
}

.faq-item__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}

.faq-item__header:hover .faq-item__question {
    color: #9234EA;
}

.faq-item__question {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #0A0A0A;
    flex: 1;
    transition: color 0.2s ease;
}

.faq-item__icon {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #0A0A0A !important;
    border: none !important;
    border-radius: 16px !important;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item__icon img {
    display: none !important;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.faq-item__answer {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding: 0 0 20px 0;
}

.faq-item__answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6A7282;
    margin: 0;
    max-width: 900px;
}

/* ============================================
   MOBILE: PRODUCT TABS
   ============================================ */
@media (max-width: 768px) {

    /* --- Ana container --- */
    .product-tabs {
        width: calc(100% - 32px);
        height: auto;
        min-height: auto;
        border-radius: 20px;
        padding: 20px 0 32px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* --- Pill Navigation --- */
    .pill-nav {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        padding: 0 8px;
        margin-bottom: 24px;
    }

    .pill-nav__bar {
        height: auto;
        border-radius: 20px;
        padding: 4px;
        gap: 2px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .pill-nav__bar::-webkit-scrollbar {
        display: none;
    }

    .pill-nav__item {
        padding: 8px 10px;
        border-radius: 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .pill-nav__item span {
        font-size: 12px;
        line-height: 16px;
    }

    /* --- Panels Container --- */
    .product-tabs__panels {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .product-panel {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
    }

    .product-panel--active {
        position: relative;
    }

    /* --- Inner Content --- */
    .product-section__inner {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        padding: 0 20px;
    }

    /* --- Layout --- */
    .product-layout {
        flex-direction: column;
        gap: 28px;
        height: auto;
    }

    .product-layout--image-first {
        flex-direction: column;
    }

    /* --- Content --- */
    .product-content {
        width: 100%;
        height: auto;
        padding: 0;
        flex: none;
    }

    .product-content>*+* {
        margin-top: 16px;
    }

    .product-label {
        margin-bottom: 12px;
    }

    .product-label img {
        width: 28px;
        height: 28px;
    }

    .product-label span {
        font-size: 16px;
    }

    .product-title {
        font-size: 26px;
        line-height: 32px;
        letter-spacing: -0.3px;
        max-width: 100%;
    }

    .product-title span {
        white-space: normal !important;
    }

    .product-features {
        max-width: 100%;
        gap: 6px;
    }

    .product-features__text {
        font-size: 15px;
        line-height: 22px;
    }

    .product-actions {
        margin-top: 20px;
    }

    .btn-product {
        width: 100%;
        height: 48px;
        font-size: 15px;
        border-radius: 14px;
    }

    /* --- Visual/Image --- */
    .product-visual {
        width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 380px;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;
    }

    .product-visual__wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }

    .product-visual__bg,
    .product-visual__bg--faded {
        display: none !important;
    }

    .product-visual__ui,
    .product-panel[data-panel="0"] .product-visual__ui,
    .product-panel[data-panel="1"] .product-visual__ui,
    .product-panel[data-panel="2"] .product-visual__ui,
    .product-panel[data-panel="3"] .product-visual__ui,
    .product-panel[data-panel="4"] .product-visual__ui {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 60% !important;
        height: auto !important;
        max-width: 220px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    /* Mission WAY - yatay UI mockup, daha geniş */
    .product-panel[data-panel="0"] .product-visual__ui {
        width: 100% !important;
        max-width: 320px;
    }

    /* --- Features Section Mobile --- */
    .features-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .features-section__inner {
        gap: 32px;
        align-items: stretch;
        padding: 0 16px;
    }

    .features-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scrollbar-width: none;
        width: 100vw;
        max-width: 100vw;
        margin-left: -16px;
        grid-template-columns: none;
        gap: 0;
    }

    .features-carousel::-webkit-scrollbar {
        display: none;
    }

    .features-page {
        display: flex;
        min-width: calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        flex-shrink: 0;
        scroll-snap-align: start;
        flex-direction: column;
        gap: 16px;
        box-sizing: border-box;
        padding: 0 16px;
    }

    .feature-card {
        padding: 20px;
        height: 140px;
        gap: 10px;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature-card__title {
        font-size: 15px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        max-width: 100%;
    }

    .feature-card__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .feature-card__icon img {
        width: 100%;
        height: 100%;
    }

    .features-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .features-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #D1D5DB;
        transition: background 0.3s ease, width 0.3s ease;
    }

    .features-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #9234EA;
    }

    .features-swipe-hand {
        font-size: 18px;
        margin-left: 6px;
        display: inline-block;
        animation: swipeHint 1.5s ease-in-out infinite;
    }

    @keyframes swipeHint {

        0%,
        100% {
            transform: translateX(0) rotate(90deg);
            opacity: 0.7;
        }

        50% {
            transform: translateX(8px) rotate(90deg);
            opacity: 1;
        }
    }

    .video-section {
        margin-top: 0;
        margin-bottom: 0;
    }

    .product-tabs {
        padding-bottom: 20px !important;
    }

    .comparison-section {
        padding: 20px 0 20px;
    }

    .faq-section {
        padding: 20px 0 20px;
    }

    /* --- Dekoratif elemanlar mobilde gizle --- */
    .decor-signpost-left,
    .decor-signpost-right,
    .decor-road,
    .decor-character {
        display: none;
    }

    /* --- Navbar Mobile --- */
    .navbar__cta {
        display: none;
    }

    /* --- Footer Mobile --- */
    .footer {
        padding: 0 12px 24px;
    }

    .footer__inner {
        padding: 32px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        border-top: 1px solid #E5E7EB;
        padding-top: 24px;
        margin-top: 4px;
    }

    .footer-brand__disclaimer {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    /* --- CTA Mobile --- */
    .cta-section {
        padding: 32px 12px;
    }

    .footer-cta {
        height: auto;
        padding: 48px 24px;
        border-radius: 16px;
    }

    .footer-cta__title {
        font-size: 28px;
    }
}