/* Global tasarım değişkenleri */
:root {
    --color-bg: #6118a8;
    --color-bg-soft: #6b1fb2;
    --color-accent: #ff8b37;
    --color-accent-soft: rgba(255, 139, 55, 0.16);
    --color-accent-secondary: #ffe082;
    --color-text: #ffffff;
    --color-text-soft: #f5e9ff;
    --color-border-soft: rgba(243, 232, 255, 0.25);
    --shadow-soft: 0 26px 60px rgba(40, 12, 80, 0.65);
    --radius-lg: 22px;
    --radius-full: 999px;
    --container-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 500;
    background: #f3f4f6;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button {
    font: inherit;
}

/* Uygulama kabuğu */
.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-shell__inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Hero block (üstteki ana hero) */
.hero-block {
    background:
        radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 0, rgba(255, 176, 95, 0.38), transparent 55%),
        linear-gradient(135deg, #5b189a 0%, #7a23cf 60%, #8c2ce0 100%);
    border-bottom-left-radius: 48% 14%;
    border-bottom-right-radius: 48% 14%;
    padding: 0 1.5rem 3.4rem;
    margin: 0 calc(-50vw + 50%);
}

@media (max-width: 768px) {
    .hero-block {
        padding-inline: 1.25rem;
        border-bottom-left-radius: 55% 20%;
        border-bottom-right-radius: 55% 20%;
    }
}

/* Video section (altta) */
.video-section {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.video-section__title {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem;
}

.video-section__subtitle {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
}

.video-section__player-wrap {
    max-width: 320px;
    margin: 0 auto;
}

/* Eski hero-video (video section'da kullanılıyor: phone-mockup, placeholder) */
.hero-video-block {
    background:
        radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 0, rgba(255, 176, 95, 0.38), transparent 55%),
        linear-gradient(135deg, #5C1D94 0%, #5b189a 30%, #7a23cf 70%, #8c2ce0 100%);
    padding: 3rem 1.5rem 4rem;
    margin: 0 calc(-50vw + 50%);
    border-bottom-left-radius: 48% 14%;
    border-bottom-right-radius: 48% 14%;
}

.hero-video {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.hero-video__title {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.hero-video__subtitle {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem;
}

.hero-video__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-video__stores {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.hero-video__download-label {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-video__stores .store-badge {
    min-width: 160px;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.hero-video__stores .store-badge:hover {
    background: rgba(15, 23, 42, 0.95);
    filter: brightness(1.05);
}

.hero-video__player-wrap {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.hero-video__phone-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19;
    max-height: 480px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 24px 48px rgba(0, 0, 0, 0.3);
}

.hero-video__video-area {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #1a1a2e;
}

.hero-video__placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-video__placeholder-preview {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #5b189a 0%, #7a23cf 50%, #9333ea 100%);
    opacity: 0.6;
}

.hero-video__play-btn {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-video__play-btn::after {
    content: "";
    margin-left: 6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #5C1D94;
}

.hero-video__placeholder:hover .hero-video__play-btn {
    transform: scale(1.08);
    background: #ffffff;
}

@media (max-width: 768px) {
    .hero-video-block {
        padding: 2rem 1.25rem 3rem;
    }

    .hero-video__main {
        flex-direction: column;
    }

    .hero-video__stores {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .app-shell__inner {
        padding-inline: 1.25rem;
    }
}

/* Üst bar / navigation (Helyum tarzı) */
.app-header {
    padding: 0.9rem 2.5rem 0.6rem;
    color: var(--color-text);
    background:
        radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 0, rgba(255, 176, 95, 0.38), transparent 55%),
        linear-gradient(135deg, #5b189a 0%, #7a23cf 60%, #8c2ce0 100%);
}

.app-header__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.app-header__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.app-header__logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
}

.app-header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.app-header__title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.app-header__tagline {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.95rem;
}

.top-nav__link {
    color: #fefefe;
    opacity: 0.9;
    font-weight: 500;
}

.top-nav__link:hover {
    opacity: 1;
}

.top-nav__cta {
    margin-left: 0.6rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--color-accent);
    color: #2b0b00;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(41, 10, 0, 0.55);
}

.top-nav__cta:hover {
    filter: brightness(1.05);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(44, 13, 78, 0.85);
    border: 1px solid rgba(249, 250, 251, 0.5);
}

.lang-switcher__button {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--color-text-soft);
    background: transparent;
    transition: background-color 0.17s ease, color 0.17s ease;
}

.lang-switcher__button--active {
    background: #ffffff;
    color: #4b0f83;
}

@media (max-width: 768px) {
    .app-header {
        padding-inline: 1.25rem;
    }

    .top-nav {
        gap: 0.9rem;
        font-size: 0.85rem;
    }

    .top-nav__link:nth-child(n+3) {
        display: none;
    }
}

/* Ana içerik */
.app-main {
    flex: 1;
}

/* HERO bölümü - Helyum ekranı */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
    padding: 3.2rem 0 3.4rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero__content {
    max-width: 430px;
    color: #ffffff;
}

.hero__title-main {
    font-size: clamp(2.6rem, 4vw, 3.1rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem;
    opacity: 0;
    transform: translateY(-24px);
    animation: hero-title-slide 700ms cubic-bezier(0.21, 0.8, 0.45, 1) forwards;
}

.hero__subtitle-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.6rem;
    opacity: 0;
    transform: translateY(-18px);
    animation: hero-subtitle-slide 800ms cubic-bezier(0.21, 0.8, 0.45, 1) forwards;
    animation-delay: 120ms;
}

.hero__subtitle-secondary {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.4rem;
    opacity: 0;
    transform: translateY(-12px);
    animation: hero-subtitle-secondary-slide 850ms cubic-bezier(0.21, 0.8, 0.45, 1) forwards;
    animation-delay: 220ms;
}

.hero__download-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: hero-subtitle-secondary-slide 850ms cubic-bezier(0.21, 0.8, 0.45, 1) forwards;
    animation-delay: 260ms;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: hero-subtitle-secondary-slide 850ms cubic-bezier(0.21, 0.8, 0.45, 1) forwards;
    animation-delay: 340ms;
}

.store-badge {
    min-width: 150px;
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.25);
    background: #111827;
    color: #f9fafb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.store-badge--google {
    background: #111827;
}

.hero-phones {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    width: 220px;
    height: 420px;
    border-radius: 34px;
    background: linear-gradient(145deg, #f9fafb 0%, #e5e7eb 40%, #f9fafb 100%);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.75);
    position: absolute;
    overflow: hidden;
}

.hero-phone--back {
    transform: rotate(14deg);
    right: 10px;
    top: 40px;
    opacity: 0.9;
}

.hero-phone--front {
    transform: rotate(-12deg);
    left: 10px;
    top: -10px;
}

.hero-phone__screen {
    position: absolute;
    inset: 12px;
    border-radius: 28px;
    background: linear-gradient(145deg, #6b21a8, #9333ea);
}

.hero-phone__screen--secondary {
    background: #6b21a8;
}

.hero-phone__menu {
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    background: #f9fafb;
    padding: 0.9rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-phone__menu-header {
    height: 16px;
    border-radius: 999px;
    background: #e5e7eb;
    margin-bottom: 0.3rem;
}

.hero-phone__menu-item {
    height: 32px;
    border-radius: 999px;
    background: #f3f4f6;
}

.hero-phone__menu-item--highlight {
    background: linear-gradient(90deg, #ffb74d, #ff8b37);
}

@keyframes hero-title-slide {
    0% {
        opacity: 0;
        transform: translateY(-24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-subtitle-slide {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-subtitle-secondary-slide {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .hero-phones {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2rem;
    }
}

/* Bölüm başlıkları ve gridler - Mor / Beyaz dönüşümlü */
.section {
    margin-top: 0;
    padding: 2.5rem 1.5rem 2.5rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.section--white {
    background: #ffffff;
}

.section--purple {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 176, 95, 0.06), transparent 50%),
        linear-gradient(180deg, #5C1D94 0%, #5b189a 40%, #6d28d9 100%);
    color: #ffffff;
}

.section--first {
    margin-top: -1rem;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.08);
}

/* Bicops nedir bölümü (Helyum “Her gün ücretsiz ödüller” tarzı) */
/* Uygulama özellikleri - 2 bölüm (telefon görselli) */
.feat-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1.5fr);
    column-gap: 2.5rem;
    row-gap: 1.5rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feat-row--white {
    grid-template-columns: minmax(0, 1.5fr) auto;
}
.feat-row--white .feat-row__content--first { grid-column: 1; }
.feat-row--white .feat-row__visual--right { grid-column: 2; }

.feat-row__visual {
    position: relative;
    min-height: 240px;
    max-width: 260px;
}

.feat-row__shape {
    position: absolute;
    inset: 15% -15% 0 0;
    border-radius: 32px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15), transparent 60%), rgba(92, 29, 148, 0.5);
}

.feat-row__shape--accent {
    background: radial-gradient(circle at 100% 0, rgba(255, 139, 55, 0.25), transparent 55%), radial-gradient(circle at 0 0, rgba(124, 58, 237, 0.12), transparent 60%);
}

.feat-row__phone {
    position: relative;
    width: 200px;
    height: 400px;
    border-radius: 34px;
    background: linear-gradient(145deg, #f9fafb 0%, #e5e7eb 40%, #f9fafb 100%);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.5);
    overflow: hidden;
    margin-left: 1.2rem;
}

.feat-row__phone--right {
    margin-left: 0;
    margin-right: 1.2rem;
}

.feat-row__phone-screen {
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    background: linear-gradient(145deg, #6b21a8, #9333ea);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feat-row__phone-screen--light {
    background: #f9fafb;
}

.feat-row__phone-bar {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.feat-row__phone-bar--dark {
    background: #e5e7eb;
}

.feat-row__phone-pill {
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}

.feat-row__phone-pill--primary,
.feat-row__phone-pill--accent {
    background: linear-gradient(90deg, #ffb74d, #ff8b37);
}

.feat-row__phone-pill--dark {
    background: #e5e7eb;
}

.feat-row__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feat-row__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.feat-row__title--dark { color: #111827; }

.feat-row__subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.feat-row__subtitle--dark { color: #4b5563; }

.feat-row__blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.4rem;
}

.feat-row__blocks--dark .feat-block {
    background: #f9fafb;
    border-color: rgba(148, 163, 184, 0.3);
}

.feat-block--dark .feat-block__title { color: #111827; }
.feat-block--dark .feat-block__group-title { color: #374151; }
.feat-block--dark .feat-block__list,
.feat-block--dark .feat-block__list li { color: #4b5563; }

.feat-block__num--dark {
    background: #7c3aed;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .feat-row {
        grid-template-columns: minmax(0, 1fr);
    }
    .feat-row--white .feat-row__content--first,
    .feat-row--white .feat-row__visual--right {
        grid-column: 1;
    }
    .feat-row__visual { margin: 0 auto; }
    .feat-row__phone--right { margin: 0 auto; }
    .feat-row__blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .feat-row__blocks { grid-template-columns: minmax(0, 1fr); }
    .feat-row__phone { width: 180px; height: 360px; }
}

.app-features {
    max-width: var(--container-width);
    margin: 0 auto;
    color: #ffffff;
}
.app-features__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.75rem;
    text-align: center;
}
.app-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.feat-block {
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.feat-block__num {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.feat-block__title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.9rem;
}
.feat-block--compact .feat-block__group { margin-bottom: 0.35rem; }
.feat-block--compact .feat-block__title { margin-bottom: 0.35rem; }
.feat-block--compact .feat-block__list { font-size: 0.72rem; }
.feat-block__group {
    margin-bottom: 0.5rem;
}
.feat-block__group:last-child {
    margin-bottom: 0;
}
.feat-block__group-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.4rem;
}
.feat-block__list {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    padding-left: 1rem;
    line-height: 1.4;
}
.feat-block__list li {
    margin-bottom: 0.1rem;
}
.feat-block__list li:last-child {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .app-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .app-features__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.bicops-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1.4fr);
    column-gap: 2.75rem;
    row-gap: 2rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto 1.5rem;
}

.bicops-intro__left {
    position: relative;
    min-height: 260px;
    max-width: 260px;
}

.bicops-intro__shape {
    position: absolute;
    inset: 18% -18% 0 5%;
    border-radius: 32px;
    background:
        radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.2), transparent 60%),
        #4c1d95;
}

.bicops-intro__phone {
    position: relative;
    width: 210px;
    height: 430px;
    border-radius: 34px;
    background: linear-gradient(145deg, #f9fafb 0%, #e5e7eb 40%, #f9fafb 100%);
    box-shadow: 0 32px 55px rgba(15, 23, 42, 0.6);
    overflow: hidden;
    margin-left: 1.2rem;
}

.bicops-intro__phone-screen {
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: #f9fafb;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.bicops-intro__phone-bar {
    height: 16px;
    border-radius: 999px;
    background: #e5e7eb;
}

.bicops-intro__phone-pill {
    height: 32px;
    border-radius: 999px;
    background: #f3f4f6;
}

.bicops-intro__phone-pill--primary {
    background: linear-gradient(90deg, #ffb74d, #ff8b37);
}

.bicops-intro__right {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-left: 0.5rem;
}

.bicops-intro__eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f97316;
    margin: 0;
}

.bicops-intro__heading {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.bicops-intro__body {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0.25rem 0 0.75rem;
}

.bicops-intro__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.bicops-intro__subheading {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.3rem;
}

.bicops-intro__subbody {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 960px) {
    .bicops-intro {
        grid-template-columns: minmax(0, 1fr);
    }

    .bicops-intro__left {
        order: 2;
    }

    .bicops-intro__right {
        order: 1;
    }
}

/* Başlıca özellikler bölümü (görsel + 1-5 kutu) */
.features-intro {
    max-width: var(--container-width);
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1.4fr);
    column-gap: 2.75rem;
    row-gap: 2rem;
    align-items: center;
}

.features-intro__left {
    position: relative;
    min-height: 220px;
    max-width: 260px;
}

.features-intro__shape {
    position: absolute;
    inset: 18% -12% 0 8%;
    border-radius: 32px;
    background:
        radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 60%),
        #4c1d95;
}

.features-intro__phone {
    position: relative;
    width: 210px;
    height: 380px;
    border-radius: 34px;
    background: linear-gradient(145deg, #f9fafb 0%, #e5e7eb 40%, #f9fafb 100%);
    box-shadow: 0 32px 55px rgba(15, 23, 42, 0.6);
    overflow: hidden;
    margin-left: 1.4rem;
}

.features-intro__phone-screen {
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: #f9fafb;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.features-intro__phone-bar {
    height: 16px;
    border-radius: 999px;
    background: #e5e7eb;
    margin-bottom: 0.25rem;
}

.features-intro__phone-row {
    height: 26px;
    border-radius: 999px;
    background: #f3f4f6;
}

.features-intro__phone-row--wide {
    width: 80%;
}

.features-intro__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-intro__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.features-intro__body {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
    max-width: 540px;
}

/* Mor arka planda beyaz metin */
.features-intro--on-purple .features-intro__heading,
.features-intro--on-purple .features-intro__body,
.features-intro--on-purple .feature-box__title,
.features-intro--on-purple .feature-box__text {
    color: #ffffff;
}

.features-intro--on-purple .features-intro__body {
    color: rgba(255, 255, 255, 0.9);
}

.features-intro--on-purple .feature-box {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.features-intro--on-purple .feature-box__index {
    background: rgba(255, 255, 255, 0.95);
    color: #5C1D94;
}

.features-intro--on-purple .feature-box__text {
    color: rgba(255, 255, 255, 0.9);
}

.features-intro--on-purple .features-intro__shape {
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.2), transparent 60%),
        rgba(92, 29, 148, 0.6);
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.feature-box {
    display: flex;
    gap: 0.6rem;
    padding: 0.7rem 0.7rem;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-box__index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #4f46e5;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-box__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.15rem;
}

.feature-box__text {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 960px) {
    .features-intro {
        grid-template-columns: minmax(0, 1fr);
    }

    .features-intro__left {
        order: 2;
    }

    .features-intro__right {
        order: 1;
    }
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.reveal {
    opacity: 0;
    transform: translateY(-28px);
    transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.section__title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #111827;
}

.section__subtitle {
    font-size: 0.9rem;
    color: #4b5563;
    max-width: 24rem;
}

.section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

@media (max-width: 960px) {
    .section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.info-card {
    padding: 1.1rem 1.1rem 1rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.info-card__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.info-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #111827;
}

.info-card__body {
    font-size: 0.85rem;
    color: #4b5563;
}

/* Adım adım liste */
.steps {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.steps__list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.step {
    display: flex;
    gap: 0.85rem;
}

.step__index {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--color-text-soft);
    flex-shrink: 0;
}

.step__content-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.18rem;
    color: #111827;
}

.step__content-text {
    font-size: 0.83rem;
    color: #4b5563;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Sağladığı faydalar (4 kart) */
.benefits-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 0 1.5rem;
}

.section__title--center {
    text-align: center;
    margin-bottom: 1.75rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.benefit-card {
    padding: 1.25rem 1.1rem;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

.benefit-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
}

.benefit-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.4rem;
}

.benefit-card__body {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Kısa özet blok */
.summary-block {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.summary-block__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4f46e5;
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.summary-block__body {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Mor arka planda */
.summary-block--on-purple {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.summary-block--on-purple .summary-block__title {
    color: #ffe082;
}

.summary-block--on-purple .summary-block__body {
    color: #ffffff;
}

/* Ek özellikler (kampanya, dil, güvenlik) */
.extras-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 0 1.5rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.extra-card {
    padding: 1.35rem 1.2rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.extra-card:hover {
    box-shadow: 0 14px 36px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.extra-card__badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.extra-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
}

.extra-card__body {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Son CTA (indirme) - Mor arka plan, beyaz metin */
.cta-final {
    margin-top: 0;
    padding: 4rem 1.5rem;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 55%),
        linear-gradient(180deg, #5C1D94 0%, #5b189a 50%, #6d28d9 100%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cta-final__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.cta-final__title {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.cta-final__subtitle {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.cta-final__stores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.cta-final__stores .store-badge {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.cta-final__stores .store-badge:hover {
    background: rgba(15, 23, 42, 0.95);
    filter: brightness(1.1);
}

/* İşletmeler için blok */
.business-highlight {
    margin-top: 2.2rem;
    padding: 1.4rem 1.4rem 1.35rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
}

.business-highlight__text {
    flex: 1 1 220px;
}

.business-highlight__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #111827;
}

.business-highlight__subtitle {
    font-size: 0.86rem;
    color: #4b5563;
}

.business-highlight__action {
    flex: 0 0 auto;
}

/* Footer */
.app-footer {
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2.5rem 1.5rem 1.5rem;
    background:
        radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.06), transparent 50%),
        linear-gradient(180deg, #3b0f6b 0%, #4c1d95 50%, #5b189a 100%);
    color: rgba(255, 255, 255, 0.9);
}

.app-footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.app-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.app-footer__logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.app-footer__logo-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.app-footer__tagline {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.app-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.app-footer__col-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.app-footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.app-footer__link:hover {
    color: #ffffff;
}

.app-footer__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-footer__store {
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.app-footer__store:hover {
    background: rgba(255, 255, 255, 0.15);
}

.app-footer__cta {
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    border: none;
    background: var(--color-accent);
    color: #2b0b00;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

.app-footer__cta:hover {
    filter: brightness(1.08);
}

.app-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (max-width: 768px) {
    .app-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .app-footer__brand {
        margin-bottom: 1.5rem;
    }
}

/* Genel yardımcı sınıflar */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

.text-soft {
    color: var(--color-text-soft);
}

.text-error {
    color: #fb7185;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Counter / küçük bileşenler */
.card {
    padding: 1.25rem 1.4rem;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.23), transparent 55%),
                rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.85);
}

.card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.card__body {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.card__actions {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-counter {
    font-size: 1.6rem;
    font-weight: 600;
}

/* Basit tablo */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: 0.9rem;
    border-radius: 16px;
    overflow: hidden;
}

.data-table thead {
    background: rgba(15, 23, 42, 0.9);
}

.data-table th,
.data-table td {
    padding: 0.55rem 0.85rem;
    text-align: left;
}

.data-table th {
    font-weight: 500;
    color: var(--color-text-soft);
}

.data-table tbody tr:nth-child(odd) {
    background: rgba(15, 23, 42, 0.9);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.95);
}

.data-table tbody tr:hover {
    background: rgba(30, 64, 175, 0.75);
}

/* İletişim formu modal */
.contact-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.contact-modal__box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    max-width: 460px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-modal__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.contact-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.contact-modal__close:hover {
    background: #e5e7eb;
}

.contact-modal__body {
    padding: 1.5rem;
}

.contact-modal__field {
    margin-bottom: 1rem;
}

.contact-modal__field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.4rem;
}

.contact-modal__input {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
}

.contact-modal__input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-modal__textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-modal__btn {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.contact-modal__btn--secondary {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
}

.contact-modal__btn--primary {
    border: none;
    background: linear-gradient(135deg, #5b189a, #7a23cf);
    color: #ffffff;
}

.contact-modal__btn--primary:hover {
    filter: brightness(1.05);
}

@media (max-width: 480px) {
    .contact-modal__row {
        grid-template-columns: 1fr;
    }
}

/* Hata barı (Blazor default) */
#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #111827;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

