/* =============================================
   xTürkiyeMüzik - Premium Landing Page
   Design System & Styles
   ============================================= */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --bg:          #030201;
    --bg-alt:      #0c0a08;
    --bg-card:     #14100d;
    --white:       #f8f3ea;
    --text:        rgba(248,243,234,0.88);
    --text-sec:    rgba(248,243,234,0.55);
    --text-dim:    rgba(248,243,234,0.34);
    --border:      rgba(216,188,122,0.10);
    --border-hover:rgba(216,188,122,0.24);
    --glow:        rgba(216,188,122,0.07);
    --accent:      #d8bc7a;
    --accent-soft: rgba(216,188,122,0.16);
    --accent-glow: rgba(216,188,122,0.22);
    --nav-h:       76px;
    --font:        'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background:
        radial-gradient(circle at 18% 8%, rgba(216,188,122,0.055), transparent 32%),
        radial-gradient(circle at 82% 2%, rgba(111,126,98,0.045), transparent 30%),
        var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    background: rgba(216,188,122,0.28);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(216,188,122,0.28);
    border-radius: 10px;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
}

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


/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1000;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(8,6,4,0.86);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s;
}
.nav-logo img {
    transform: rotate(45deg);
    transform-origin: center;
}
.nav-logo:hover { opacity: 0.7; }

img[src="logo.png"] {
    transform: rotate(45deg);
    transform-origin: center;
}

.cmp-left-logo img[src="logo.png"] {
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.835rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    transition: all 0.35s var(--ease);
}
.nav-cta:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
}
.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}
.nav-menu-btn.active span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}
.nav-menu-btn.active span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 0.75rem; letter-spacing: 0.02em; }
}

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-menu-btn { display: flex; }
    .nav-inner { padding: 0 24px; }
}


/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:
        radial-gradient(circle at 18% 12%, rgba(216,188,122,0.07), transparent 34%),
        rgba(5,4,3,0.98);
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.mobile-menu-close svg {
    color: var(--text-sec);
}

.mobile-menu-search {
    color: var(--text-sec);
    transition: color 0.3s;
}
.mobile-menu-search:hover {
    color: var(--white);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--text);
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.4s var(--ease-out), background 0.2s;
}

.mobile-link:active {
    background: rgba(255,255,255,0.04);
}

.mobile-link svg {
    color: var(--text-dim);
    flex-shrink: 0;
}

.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.24s; }


/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.1s linear;
    will-change: transform;
}

/* YouTube hero background slider */
.hero-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-yt-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease;
    overflow: hidden;
    pointer-events: none;
}

.hero-yt-slide.active {
    opacity: 1;
}

.hero-yt-slide iframe,
.hero-yt-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Cover entire area regardless of aspect ratio */
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
    transform: translate(-50%, -50%) scale(1.08);
    border: none;
    object-fit: cover;
    pointer-events: none;
}

.hero-image-fallback {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(3,2,1,0.52), rgba(14,10,6,0.28) 48%, rgba(3,2,1,0.58));
    z-index: 1;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: overlay;
    animation: noiseShift 0.15s steps(3) infinite;
}

@keyframes noiseShift {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(-2px, 1px); }
    66%  { transform: translate(1px, -2px); }
    100% { transform: translate(2px, 2px); }
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(3,2,1,0.78), transparent);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    pointer-events: none;
    transform: translateY(72px);
}

.hero-center-title {
    max-width: 980px;
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: clamp(2rem, 4.6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-shadow: 0 18px 56px rgba(0,0,0,0.78);
}

.hero-text {
    max-width: 600px;
    text-align: right;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1px solid var(--border-hover);
    border-radius: 2px;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        padding: 0 24px;
        align-items: center;
        padding-bottom: 0;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--white), #dec27f);
    color: #070503;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(216,188,122,0.82);
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary svg {
    transition: transform 0.35s var(--ease-out);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(216,188,122,0.28);
    border-radius: 100px;
    transition: all 0.4s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--glow);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--white);
    animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
    0%   { top: -50%; }
    100% { top: 100%; }
}

/* Hero Animations */
.animate-item {
    opacity: 0;
    transform: translateY(32px);
}

body.loaded .animate-item {
    animation: heroReveal 1s var(--ease-out) forwards;
}

body.loaded .hero-tag       { animation-delay: 0.3s; }
body.loaded .hero-title     { animation-delay: 0.5s; }
body.loaded .hero-desc      { animation-delay: 0.7s; }
body.loaded .hero-ctas      { animation-delay: 0.9s; }
body.loaded .hero-scroll-indicator { animation-delay: 1.3s; }

@keyframes heroReveal {
    0%   { opacity: 0; transform: translateY(32px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ---------- CTA BLOCK (Below Hero) ---------- */
.hero-cta-section {
    background: var(--bg);
    padding: 60px 0 0;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
}

.cta-block-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
    text-align: center;
    white-space: nowrap;
}

.cta-filled {
    background: linear-gradient(135deg, var(--white), #dec27f);
    color: #070503;
    border: 1px solid rgba(216,188,122,0.82);
}

.cta-filled:hover {
    background: transparent;
    color: var(--white);
}

.cta-outline {
    background: transparent;
    border: 1px solid rgba(216,188,122,0.32);
    color: var(--white);
}

.cta-outline:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

@media (max-width: 768px) {
    .hero-cta-section {
        padding: 40px 0 0;
    }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .cta-block-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.88rem;
        border-radius: 100px;
    }
}


/* ---------- SECTION SHARED ---------- */
.section-header {
    padding-top: 120px;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(216,188,122,0.64);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------- MODELS SECTION ---------- */
.models {
    background: var(--bg-alt);
    padding-bottom: 0;
    position: relative;
}

.models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
    pointer-events: none;
}

.model-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 9px 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-sec);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.35s var(--ease);
}

.filter-btn:hover {
    color: var(--white);
    border-color: var(--border-hover);
    background: var(--glow);
}

.filter-btn.active {
    color: #070503;
    background: linear-gradient(135deg, var(--white), #dec27f);
    border-color: rgba(216,188,122,0.82);
}

/* Slider shared */
.slider-wrap {
    position: relative;
    padding: 0 48px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .slider-wrap { padding: 0 24px; }
}

.model-slider {
    display: flex;
    gap: 20px;
    will-change: transform;
    padding: 10px 0 20px;
    /* overflow controlled by JS */
}

.story-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.story-slider::-webkit-scrollbar {
    display: none;
}

/* Model Card */
.model-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
    position: relative;
    cursor: pointer;
}

.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(216,188,122,0.08), transparent 60%);
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.model-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: 
        0 24px 48px rgba(0,0,0,0.4),
        0 0 60px rgba(216,188,122,0.045);
}

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

.model-card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #100d09, #19130d);
}

.model-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.model-card:hover .model-card-visual img {
    transform: scale(1.08);
}

/* Play overlay on model cards */
.model-card-visual .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    z-index: 2;
    transition: background 0.4s;
}

.model-card:hover .model-card-visual .play-overlay {
    background: rgba(0,0,0,0.35);
}

.model-card-visual .play-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    opacity: 0.7;
    transition: all 0.4s var(--ease);
}

.model-card:hover .model-card-visual .play-icon {
    opacity: 1;
    background: rgba(255,255,255,0.22);
    transform: scale(1.12);
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    color: var(--white);
    z-index: 2;
}

.model-card-info {
    padding: 20px 24px 24px;
    position: relative;
    z-index: 2;
}

.model-card-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.model-card-info span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-sec);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Card filter hide/show */
.model-card.hidden {
    display: none;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 24px 48px 0;
}

@media (max-width: 768px) {
    .slider-controls { padding: 24px 24px 0; }
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-sec);
    transition: all 0.35s var(--ease);
}

.slider-btn:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.05);
}


/* ---------- STORIES SECTION ---------- */
.stories {
    background: var(--bg);
    padding-bottom: 120px;
    position: relative;
}

.stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg));
    pointer-events: none;
}

/* Story Card */
.story-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out);
}

.story-card:hover {
    transform: translateY(-4px);
}

.story-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    background: var(--bg-card);
}

.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), filter 0.6s;
}

.story-card:hover .story-thumb img {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.4s;
}

.story-card:hover .play-overlay {
    background: rgba(0,0,0,0.4);
}

.play-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s var(--ease);
}

.story-card:hover .play-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.story-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.story-card:hover h4 {
    color: var(--white);
}


/* ---------- FOOTER ---------- */
.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 40px;
    background: var(--bg);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

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

.footer-tagline {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-sec);
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}


/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s cubic-bezier(0.16,1,0.3,1);
}

.whatsapp-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}


/* ---------- VIDEO MODAL ---------- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s var(--ease-out);
}

.video-modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    transition: color 0.3s;
    z-index: 10;
}
.modal-close:hover { color: var(--white); }

.modal-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.modal-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        padding: 0 24px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 28px;
    }

    .section-header {
        padding-top: 80px;
    }

    .model-card {
        flex: 0 0 280px;
    }

    .story-card {
        flex: 0 0 300px;
    }

    .model-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 7px 16px;
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .hero-center-title {
        font-size: 1.95rem;
    }

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

    .hero-desc {
        font-size: 0.95rem;
    }

    .model-card {
        flex: 0 0 260px;
    }

    .story-card {
        flex: 0 0 270px;
    }
}


/* ---------- UTILITY ANIMATIONS ---------- */
@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* Smooth section transitions via gradient overlays are handled inline */


/* ---------- FAQ / SSS SECTION ---------- */
.faq {
    background: #111111;
    padding: 80px 0 80px;
}

.faq .section-header {
    text-align: center;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: var(--text-sec);
    line-height: 1.7;
    max-width: 600px;
    margin: 16px auto 0;
}

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

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    background: none;
    border: none;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--text);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out);
    color: var(--text-sec);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0 60px;
    }
    .faq-question {
        font-size: 0.92rem;
        padding: 16px 0;
    }
    .faq-answer p {
        font-size: 0.88rem;
    }
}


/* ---------- CONTACT / FORM SECTION ---------- */
.contact {
    background: var(--bg-alt);
    padding: 120px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
    pointer-events: none;
}

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

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-sec);
    transition: color 0.3s;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--text-dim);
}

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

.contact-item:hover svg {
    color: var(--accent);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(216,188,122,0.42);
    background: rgba(216,188,122,0.055);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--white);
}

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

.form-submit {
    align-self: flex-start;
    margin-top: 4px;
}


/* ---------- BIZ KIMIZ PAGE ---------- */

/* Page Hero */
.page-hero {
    padding: 180px 0 80px;
    background: var(--bg);
}

.page-hero-content {
    max-width: 640px;
}

.page-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-sec);
    line-height: 1.7;
}

/* About Grid (Misyon / Vizyon / Degeler) */
.about-section {
    padding: 80px 0 100px;
    background: var(--bg-alt);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-block {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.about-block:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.about-icon {
    margin-bottom: 20px;
    color: var(--text-sec);
}

.about-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about-block p {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.7;
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg));
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.story-text .section-title {
    margin-bottom: 24px;
}

.story-text p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

@media (max-width: 520px) {
    .story-stats { gap: 24px; }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.story-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.story-image-wrap:hover img {
    transform: scale(1.04);
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216,188,122,0.08), rgba(3,2,1,0.34));
    pointer-events: none;
}

/* About CTA Band */
.about-cta {
    padding: 80px 0 120px;
    background: var(--bg);
}

.cta-band {
    text-align: center;
    padding: 64px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(216,188,122,0.06);
}

.cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 1rem;
    color: var(--text-sec);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .btn-primary {
    display: inline-flex;
}

/* ---------- Home Packages / Campaign Modal ---------- */
/* --- Campaign Modal --- */
        .cmp-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(5,4,3,0.84);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 9000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .cmp-overlay.open { display: flex; }
        .cmp-dialog {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            max-width: 880px;
            max-height: 92vh;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 34px 110px rgba(0,0,0,0.58), 0 0 70px rgba(216,188,122,0.08);
            animation: cmpIn 0.4s cubic-bezier(0.16,1,0.3,1);
            position: relative;
        }
        @keyframes cmpIn {
            from { opacity: 0; transform: translateY(32px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* ---- Left panel ---- */
        .cmp-left {
            background: #100d0a;
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-right: 1px solid rgba(255,255,255,0.07);
            position: relative;
            overflow: hidden;
        }
        .cmp-left::before {
            content: '';
            position: absolute;
            top: -80px; left: -80px;
            width: 320px; height: 320px;
            background: radial-gradient(circle, rgba(216,188,122,0.09) 0%, transparent 70%);
            pointer-events: none;
        }
        .cmp-left-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
        }

        .cmp-left-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 12px;
        }
        .cmp-left-title {
            font-size: clamp(1.6rem, 2.4vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 8px;
        }
        .cmp-left-pkg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.55);
            margin-top: 16px;
            margin-bottom: 40px;
        }
        .cmp-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cmp-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .cmp-step-num {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            margin-top: 1px;
        }
        .cmp-step-body h4 {
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 3px;
            color: rgba(255,255,255,0.88);
        }
        .cmp-step-body p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.38);
            line-height: 1.55;
        }
        .cmp-left-footer {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.07);
            font-size: 0.75rem;
            color: rgba(255,255,255,0.25);
            line-height: 1.6;
        }

        /* ---- Right panel ---- */
        .cmp-right {
            background: #090705;
            padding: 48px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .cmp-close {
            position: absolute;
            top: 20px; right: 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.4);
            width: 36px; height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
            z-index: 2;
        }
        .cmp-close:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
        .cmp-right-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 10px;
        }
        .cmp-right-title {
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
            line-height: 1.2;
        }
        .cmp-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
        }
        .cmp-form-row {
            display: grid;
            grid-template-columns: 175px 175px;
            gap: 12px;
        }
        .cmp-field {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        .cmp-field label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }
        .cmp-field input,
        .cmp-field textarea {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            color: rgba(255,255,255,0.88);
            font-size: 0.9rem;
            padding: 13px 16px;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            font-family: inherit;
            resize: none;
        }
        .cmp-field input::placeholder,
        .cmp-field textarea::placeholder { color: rgba(255,255,255,0.2); }
        .cmp-field input:focus,
        .cmp-field textarea:focus {
            border-color: rgba(216,188,122,0.38);
            background: rgba(216,188,122,0.055);
        }
        .cmp-submit {
            margin-top: 8px;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--white), #dec27f);
            color: #070503;
            border: none;
            border-radius: 10px;
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.15s;
            font-family: inherit;
        }
        .cmp-submit:hover { opacity: 0.9; transform: translateY(-1px); }
        .cmp-submit:active { transform: translateY(0); }

        /* Live toggle */
        .cmp-live-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            display: block;
            margin-bottom: 10px;
        }
        .cmp-live-opts {
            display: flex;
            gap: 10px;
        }
        .cmp-live-opt {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 16px;
            border-radius: 10px;
            border: 1.5px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.04);
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.45);
            transition: all 0.2s ease;
            user-select: none;
        }
        .cmp-live-opt:hover { border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.7); }
        .cmp-live-opt.selected {
            border-color: rgba(255,255,255,0.55);
            background: rgba(255,255,255,0.09);
            color: #fff;
        }
        .cmp-live-opt.selected-yes { border-color: #1DB954; background: rgba(29,185,84,0.1); color: #1DB954; }
        .cmp-live-opt input[type=radio] { display: none; }

        /* Link row — hidden by default */
        .cmp-link-row {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
        }
        .cmp-link-row.visible {
            max-height: 90px;
            opacity: 1;
        }
        .cmp-privacy {
            margin-top: 12px;
            font-size: 0.73rem;
            color: rgba(255,255,255,0.22);
            text-align: center;
            line-height: 1.5;
        }

        /* Mobile */
        @media (max-width: 680px) {
            .cmp-overlay { align-items: flex-start; padding: 16px 12px 32px; }
            .cmp-dialog { grid-template-columns: 1fr; max-height: none; border-radius: 18px; }
            .cmp-left { padding: 32px 24px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
            .cmp-right { overflow-y: visible; }
            .cmp-left-title { font-size: 1.4rem; }
            .cmp-left-pkg { margin-bottom: 24px; }
            .cmp-steps { display: none; }
            .cmp-left-footer { display: none; }
            .cmp-right { padding: 28px 24px 32px; }
            .cmp-form-row { grid-template-columns: 1fr; }
        }

        /* --- Packages Slider --- */
        .srv-packages {
            padding: 100px 0 80px;
            background: var(--bg);
            border-top: 1px solid var(--border);
        }
        .srv-pkg-header { text-align: center; margin-bottom: 16px; }
        .srv-pkg-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        /* Platform filter pills */
        .srv-pkg-filters {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 32px;
        }
        .srv-pkg-filter {
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            padding: 10px 22px;
            border-radius: 100px;
            border: 1.5px solid rgba(216,188,122,0.14);
            background: rgba(216,188,122,0.045);
            color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .srv-pkg-filter:hover { background: rgba(216,188,122,0.10); color: #fff; border-color: rgba(216,188,122,0.34); }
        .srv-pkg-filter.active { background: linear-gradient(135deg, var(--white), #dec27f); color: #070503; border-color: rgba(216,188,122,0.82); }

        .srv-pkg-wrap {
            position: relative;
            margin-top: 56px;
            overflow: hidden;
        }
        .srv-pkg-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .srv-pkg-card {
            flex: 0 0 100%;
            min-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 clamp(40px, 10vw, 200px);
            box-sizing: border-box;
        }

        /* Visual banner */
        .srv-pkg-visual {
            width: 100%;
            max-width: 640px;
            height: 280px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .srv-pkg-visual.v-starter  { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); }
        .srv-pkg-visual.v-growth   { background: linear-gradient(135deg, #0a2010 0%, #0d3320 60%, #1db954 100%); }
        .srv-pkg-visual.v-pro      { background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3a 60%, #3a3aff 100%); }
        .srv-pkg-visual.v-premium  { background: linear-gradient(135deg, #1f1400 0%, #3a2800 60%, #c9a227 100%); }

        .srv-pkg-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            z-index: 2;
        }
        .srv-pkg-icon svg { filter: drop-shadow(0 0 20px rgba(255,255,255,0.2)); }
        .srv-pkg-visual-logo svg {
            width: 44px;
            height: 44px;
            filter: drop-shadow(0 0 16px rgba(255,255,255,0.25));
            opacity: 0.9;
        }
        .srv-pkg-icon span {
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.9);
        }
        .srv-pkg-badge {
            position: absolute;
            top: 18px; left: 18px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid rgba(216,188,122,0.24);
            background: rgba(216,188,122,0.11);
            backdrop-filter: blur(8px);
            color: #fff;
        }
        .srv-pkg-watermark {
            font-size: 9rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
            color: rgba(255,255,255,0.05);
            position: absolute;
            bottom: -20px; right: 20px;
            pointer-events: none;
            user-select: none;
        }

        /* Info row */
        .srv-pkg-info {
            width: 100%;
            max-width: 640px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
        }
        .srv-pkg-info h3 {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }
        .srv-pkg-info p {
            font-size: 0.875rem;
            color: var(--text-sec);
            max-width: 340px;
            line-height: 1.6;
        }
        .srv-pkg-price { text-align: right; flex-shrink: 0; }
        .srv-pkg-price-amount {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            white-space: nowrap;
        }
        .srv-pkg-price-period {
            font-size: 0.78rem;
            color: var(--text-sec);
            font-weight: 500;
        }

        /* Features */
        .srv-pkg-features {
            width: 100%;
            max-width: 640px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 36px;
        }
        .srv-pkg-feat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-sec);
        }
        .srv-pkg-feat svg { flex-shrink: 0; opacity: 0.6; }

        /* CTA button */
        .srv-pkg-cta { width: 100%; max-width: 640px; }
        .srv-pkg-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 18px 32px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            background: rgba(216,188,122,0.085);
            border: 1px solid rgba(216,188,122,0.18);
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .srv-pkg-btn:hover { background: linear-gradient(135deg, var(--white), #dec27f); color: #070503; border-color: rgba(216,188,122,0.82); }
        .srv-pkg-btn.featured { background: linear-gradient(135deg, var(--white), #dec27f); color: #070503; border-color: rgba(216,188,122,0.82); }
        .srv-pkg-btn.featured:hover { filter: brightness(1.04); }

        /* Custom / Özel Paket */
        .srv-pkg-visual.v-custom {
            background: linear-gradient(135deg, #1d1307, #3a2910, #7a5a24, #2a1a08, #1d1307);
            background-size: 300% 300%;
            animation: pkgCustomAura 5s ease infinite;
            border: 1px solid rgba(216,188,122,0.32);
            box-shadow: 0 0 60px rgba(216,188,122,0.22), inset 0 0 40px rgba(216,188,122,0.08);
        }
        @keyframes pkgCustomAura {
            0%   { background-position: 0% 50%; }
            50%  { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .srv-pkg-dot--custom { --c: #d8bc7a; }
        .srv-pkg-badge--custom {
            border-color: rgba(216,188,122,0.58);
            background: rgba(216,188,122,0.18);
            color: rgba(248,229,184,0.95);
        }
        .srv-pkg-btn--custom {
            background: linear-gradient(135deg, #b88a35, #f0d78d);
            border-color: transparent;
            color: #080604;
            text-decoration: none;
        }
        .srv-pkg-btn--custom:hover {
            background: linear-gradient(135deg, #c89a42, #ffe6a2);
            color: #080604;
            box-shadow: 0 8px 30px rgba(216,188,122,0.32);
        }
        .srv-pkg-cta--split {
            display: grid;
            grid-template-columns: minmax(220px, 0.75fr) 1fr;
            gap: 12px;
        }
        .srv-pkg-btn--info {
            background:
                linear-gradient(135deg, rgba(0,242,234,0.18), rgba(238,29,82,0.18)),
                rgba(255,255,255,0.06);
            border-color: rgba(0,242,234,0.32);
            color: #fff;
        }
        .srv-pkg-btn--info:hover {
            background: linear-gradient(135deg, #00f2ea, #ff2b68);
            color: #061010;
            box-shadow: 0 12px 34px rgba(0,242,234,0.18);
        }

        /* TikTok planning info window */
        .tt-info-shell {
            position: fixed;
            inset: 0;
            z-index: 1300;
            display: none;
            align-items: center;
            justify-content: center;
            padding: clamp(14px, 2vw, 28px);
            background: rgba(0,0,0,0.78);
            backdrop-filter: blur(16px);
        }
        .tt-info-shell.open { display: flex; }
        .tt-info-board {
            width: min(1080px, calc(100vw - 40px));
            height: min(760px, calc(100dvh - 40px));
            display: grid;
            grid-template-columns: 280px minmax(0, 1fr);
            overflow: hidden;
            border: 1px solid var(--border-hover);
            border-radius: 24px;
            background: linear-gradient(180deg, var(--bg-card), var(--bg));
            box-shadow: 0 34px 110px rgba(0,0,0,0.62);
            position: relative;
        }
        .tt-info-board::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(90deg, rgba(255,255,255,0.055), transparent 36%);
        }
        .tt-info-rail,
        .tt-info-main { position: relative; z-index: 1; }
        .tt-info-rail {
            min-width: 0;
            padding: 28px 22px;
            border-right: 1px solid var(--border);
            background: rgba(255,255,255,0.025);
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .tt-info-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .tt-info-mark {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.16);
            box-shadow: inset 10px 0 0 rgba(0,242,234,0.55), inset -10px 0 0 rgba(238,29,82,0.48);
            color: #fff;
            font-weight: 900;
            letter-spacing: 0;
        }
        .tt-info-brand strong {
            display: block;
            font-size: 0.94rem;
            line-height: 1.15;
        }
        .tt-info-brand span {
            display: block;
            color: var(--text-sec);
            font-size: 0.72rem;
            margin-top: 3px;
        }
        .tt-info-tabs {
            display: grid;
            gap: 8px;
        }
        .tt-info-tab {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 13px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.045);
            color: var(--text-sec);
            cursor: pointer;
            font-weight: 700;
            font-size: 0.82rem;
            white-space: nowrap;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }
        .tt-info-tab span:last-child {
            color: rgba(255,255,255,0.36);
            font-size: 0.74rem;
            font-weight: 800;
        }
        .tt-info-tab:hover,
        .tt-info-tab.active {
            border-color: var(--border-hover);
            background: rgba(255,255,255,0.11);
            color: #fff;
        }
        .tt-info-tab.active {
            box-shadow: inset 3px 0 0 #00f2ea, inset -3px 0 0 #ee1d52;
        }
        .tt-info-rail-note {
            margin-top: auto;
            padding: 14px;
            border-radius: 18px;
            border: 1px solid var(--border);
            color: var(--text-sec);
            font-size: 0.76rem;
            line-height: 1.55;
            background: rgba(0,0,0,0.22);
        }
        .tt-info-main {
            min-width: 0;
            min-height: 0;
            height: 100%;
            display: grid;
            grid-template-rows: auto 1fr auto;
        }
        .tt-info-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            padding: 30px 32px 18px;
        }
        .tt-info-kicker {
            color: var(--text-sec);
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .tt-info-title {
            margin: 0;
            font-size: clamp(1.55rem, 2.4vw, 2.45rem);
            line-height: 1.08;
            font-weight: 900;
            max-width: 620px;
        }
        .tt-info-close {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.06);
            color: #fff;
            cursor: pointer;
            flex: 0 0 auto;
        }
        .tt-info-close:hover { background: rgba(255,255,255,0.14); }
        .tt-info-stage {
            min-height: 0;
            overflow: hidden;
            padding: 0 32px;
        }
        .tt-info-page {
            display: none;
            height: 100%;
            min-height: 0;
            overflow: auto;
            padding: 8px 4px 24px;
            scrollbar-width: thin;
        }
        .tt-info-page.active { display: block; animation: ttPageIn 0.28s ease both; }
        @keyframes ttPageIn {
            from { opacity: 0; transform: translateY(10px) scale(0.99); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .tt-info-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
            gap: 18px;
        }
        .tt-info-card {
            border-radius: 18px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.045);
            padding: 18px;
        }
        .tt-info-card.is-hot {
            background:
                linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
                var(--bg-card);
            border-color: var(--border-hover);
        }
        .tt-info-card h4 {
            margin: 0 0 12px;
            font-size: 1rem;
        }
        .tt-info-card p,
        .tt-info-card li {
            color: var(--text-sec);
            font-size: 0.86rem;
            line-height: 1.62;
        }
        .tt-info-card ul {
            margin: 0;
            padding-left: 18px;
        }
        .tt-info-plans {
            display: grid;
            gap: 10px;
        }
        .tt-info-plan {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px;
            align-items: center;
            padding: 13px 14px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: rgba(0,0,0,0.2);
        }
        .tt-info-plan strong {
            display: block;
            font-size: 0.88rem;
        }
        .tt-info-plan span {
            color: var(--text-sec);
            font-size: 0.75rem;
        }
        .tt-info-plan b {
            white-space: nowrap;
            color: #fff;
            font-size: 0.88rem;
        }
        .tt-info-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px 32px 28px;
            border-top: 1px solid var(--border);
        }
        .tt-info-pager {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .tt-info-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            border: 0;
            background: rgba(255,255,255,0.22);
            cursor: pointer;
            transition: width 0.24s ease, background 0.24s ease;
        }
        .tt-info-dot.active {
            width: 28px;
            background: #fff;
        }
        .tt-info-arrows {
            display: flex;
            gap: 10px;
        }
        .tt-info-nav {
            min-width: 108px;
            padding: 11px 16px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.065);
            color: #fff;
            cursor: pointer;
            font-weight: 800;
            font-size: 0.8rem;
        }
        .tt-info-nav:hover { background: rgba(255,255,255,0.14); }

        @media (max-width: 860px) {
            .srv-pkg-cta--split { grid-template-columns: 1fr; }
            .tt-info-shell {
                padding: 10px;
                align-items: stretch;
            }
            .tt-info-board {
                width: 100%;
                height: calc(100dvh - 20px);
                grid-template-columns: 1fr;
                grid-template-rows: auto minmax(0, 1fr);
                border-radius: 20px;
            }
            .tt-info-rail {
                border-right: 0;
                border-bottom: 1px solid var(--border);
                padding: 14px;
                gap: 12px;
            }
            .tt-info-brand strong { font-size: 0.86rem; }
            .tt-info-mark { width: 36px; height: 36px; font-size: 0.78rem; }
            .tt-info-tabs {
                display: flex;
                overflow-x: auto;
                padding-bottom: 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .tt-info-tabs::-webkit-scrollbar { display: none; }
            .tt-info-tab {
                flex: 0 0 auto;
                padding: 10px 12px;
                font-size: 0.78rem;
            }
            .tt-info-rail-note { display: none; }
            .tt-info-main {
                min-height: 0;
                height: auto;
                grid-template-rows: auto minmax(0, 1fr) auto;
            }
            .tt-info-top {
                padding: 16px 16px 10px;
                gap: 12px;
            }
            .tt-info-title { font-size: 1.28rem; line-height: 1.16; }
            .tt-info-kicker { font-size: 0.62rem; margin-bottom: 6px; }
            .tt-info-close { width: 38px; height: 38px; }
            .tt-info-stage { padding: 0 14px; min-height: 0; }
            .tt-info-page { padding: 6px 2px 18px; }
            .tt-info-grid { grid-template-columns: 1fr; }
            .tt-info-card { border-radius: 16px; padding: 15px; }
            .tt-info-plan {
                grid-template-columns: 1fr;
                gap: 6px;
            }
            .tt-info-plan b { white-space: normal; }
            .tt-info-bottom {
                padding: 12px 14px 14px;
                align-items: flex-start;
                flex-direction: column;
            }
            .tt-info-arrows { width: 100%; }
            .tt-info-nav { flex: 1; }
        }

        /* Arrows */
        .srv-pkg-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
            color: #fff;
        }
        .srv-pkg-arrow:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
        .srv-pkg-arrow.prev { left: clamp(12px, 3vw, 48px); }
        .srv-pkg-arrow.next { right: clamp(12px, 3vw, 48px); }

        /* Dots */
        .srv-pkg-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }
        .srv-pkg-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            border: 2.5px solid transparent;
            transition: border-color 0.3s, transform 0.3s;
            position: relative;
            flex-shrink: 0;
        }
        .srv-pkg-dot::after {
            content: '';
            position: absolute;
            inset: 3px;
            border-radius: 50%;
            background: var(--c, #444);
        }
        .srv-pkg-dot.active { border-color: rgba(255,255,255,0.6); transform: scale(1.12); }

        @media (max-width: 768px) {
            .srv-pkg-info { flex-direction: column; gap: 12px; }
            .srv-pkg-price { text-align: left; }
            .srv-pkg-arrow {
                display: flex;
                top: 50%;
                transform: translateY(-50%);
                bottom: auto;
                width: 42px;
                height: 42px;
                background: rgba(255,255,255,0.1);
                border-color: rgba(255,255,255,0.18);
            }
            .srv-pkg-arrow.prev { left: 12px; }
            .srv-pkg-arrow.next { right: 12px; }
        }
