/* ============================================================
   MODERN SAAS NAVBAR — Full-width sticky from top
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                padding 0.3s ease;
}

.navbar-pill {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: padding 0.3s ease;
    position: relative;
}

/* Scroll state — stronger background + shadow */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.navbar.scrolled .navbar-pill {
    padding: 12px 36px;
}

body.inner-page .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

body.inner-page {
    padding-top: 86px;
}

@media (max-width: 1024px) {
    .navbar-pill {
        padding: 14px 22px;
    }
    .navbar.scrolled .navbar-pill {
        padding: 10px 22px;
    }
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: height 0.35s cubic-bezier(.4,0,.2,1);
}

.navbar.scrolled .navbar-logo-img {
    height: 34px;
}

/* Nav links (desktop) */
.navbar-nav {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

.navbar-nav .nav-link {
    font-size: 15px;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 2px;
    position: relative;
    letter-spacing: -0.005em;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #0ea5e9;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: linear-gradient(90deg, #0ea5e9, #3b2a7e);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.4,0,.2,1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #0f172a;
}

/* CTA Buttons */
.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.nav-login-btn {
    font-size: 14px;
    color: #0f172a;
    padding: 10px 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 99px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-login-btn:hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.nav-demo-btn {
    background: linear-gradient(135deg, #0f172a, #3b2a7e);
    color: #fff;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 99px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(59, 42, 126, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(59, 42, 126, 0.32);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 120px 0 2rem;
    background: var(--bg-light);
    overflow: hidden;
    text-align: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape-1 {
    position: absolute;
    top: -10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    max-width: 850px;
    margin: 0 auto 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* MOCKUP SLIDER */
.mockup-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mockup-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.mockup-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.mockup-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s;
}

.mockup-btn:hover {
    background: var(--color-primary);
    color: white;
}

.mockup-prev {
    left: -20px;
}

.mockup-next {
    right: -20px;
}

/* APP SLIDER */
.app-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-dark-secondary);
}

.app-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.app-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    background: white;
}

.app-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.app-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.2s;
}

.app-btn:hover {
    background: var(--color-primary);
    color: white;
}

.app-prev {
    left: 10px;
}

.app-next {
    right: 10px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.laptop-mockup::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
    /* 16:9 Aspect ratio */
}

.mockup-screen {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Mockup İçeriği (Görsel temsil için CSS çizimi) */
.mockup-header {
    height: 60px;
    background: var(--bg-dark-secondary);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
}

.mockup-sidebar {
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 220px;
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.mockup-body {
    position: absolute;
    left: 220px;
    top: 60px;
    right: 0;
    bottom: 0;
    padding: 2rem;
    background: #f1f5f9;
}


/* Floating Elements around Mockup */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 10;
    text-align: left;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.float-1 {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 2s;
}

.float-3 {
    top: -5%;
    right: 10%;
    animation-delay: 1s;
}

.float-text p {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.float-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* LAB MARQUEE */
.lab-marque-section {
    position: relative;
    z-index: 5;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    color: var(--text-secondary);
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content svg,
.marquee-content img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-content svg:hover,
.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 2rem));
    }
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step-path-svg-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .step-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .step-path-svg-wrapper {
        display: block;
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        height: 40px;
        z-index: 0;
        pointer-events: none;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    background: #fff;
    border: 1.5px solid rgba(59, 42, 126, 0.08);
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    cursor: pointer;
    font: inherit;
    color: inherit;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.step-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(139,92,246,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.step-number-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1);
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.4;
    animation: pulse 2s infinite;
    z-index: 1;
}

.step-item:hover,
.step-item:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(59, 42, 126, 0.14),
                0 6px 16px rgba(59, 42, 126, 0.08);
    border-color: rgba(139, 92, 246, 0.45);
    outline: none;
}

.step-item:focus-visible {
    outline: 3px solid rgba(139, 92, 246, 0.35);
    outline-offset: 4px;
}

.step-item:hover::before,
.step-item:focus-visible::before {
    opacity: 1;
}

.step-item:hover .step-pulse {
    display: block !important;
}

.step-item:hover .step-number,
.step-item:focus-visible .step-number {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.06);
}

.step-item .step-number {
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Call-to-action pill */
.step-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    background: rgba(139, 92, 246, 0.08);
    color: var(--color-primary, #3b2a7e);
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.75;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.step-cta i {
    width: 14px;
    height: 14px;
    stroke-width: 2.4;
}

.step-cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.step-item:hover .step-cta,
.step-item:focus-visible .step-cta {
    opacity: 1;
    background: rgba(139, 92, 246, 0.16);
}

.step-item:hover .step-cta-arrow,
.step-item:focus-visible .step-cta-arrow {
    transform: translateX(4px);
}

.step-item:active {
    transform: translateY(-3px) scale(0.99);
}

/* First-time nudge: gentle bounce on the first card to hint interactivity */
@keyframes stepNudge {
    0%, 100% { transform: translateY(0); }
    35%      { transform: translateY(-10px); }
    55%      { transform: translateY(0); }
    70%      { transform: translateY(-5px); }
    85%      { transform: translateY(0); }
}

.step-item.step-nudge {
    animation: stepNudge 1.6s ease 1.8s 1 both;
}

@media (prefers-reduced-motion: reduce) {
    .step-item,
    .step-item .step-number,
    .step-cta,
    .step-cta-arrow {
        transition: none;
    }
    .step-item.step-nudge { animation: none; }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

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

.step-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FEATURES PREVIEW SECTION */
.features-preview {
    background: var(--bg-light);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.glass-card:hover .feature-icon-wrapper {
    background: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 0.75rem;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .benefit-row {
        flex-direction: row;
    }

    .benefit-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.benefit-list li i {
    color: var(--color-success);
    margin-top: 0.25rem;
}

.benefit-visual {
    flex: 1;
    width: 100%;
    position: relative;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


/* MOBILE APP SECTION */
.app-section {
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .app-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}

.app-text {
    flex: 1;
    max-width: 500px;
}

.app-text .section-title {
    text-align: left;
}

.app-features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature-item h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.app-stores {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    color: white;
    transition: all var(--transition-fast);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 1.5rem;
}

.app-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    border-radius: 40px;
    background: #111;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: var(--bg-dark-secondary);
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    padding: 4rem 0;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L100 0 L100 100 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat right bottom;
    background-size: cover;
    pointer-events: none;
}

/* --- clean modern card grid --- */
.features-custom-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.features-custom-title {
    color: #ef4444;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    font-weight: 800;
    text-align: center;
}

.features-custom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-custom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.feature-card-clean {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fcc-icon-circle {
    width: 90px;
    height: 90px;
    background: #3730a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(55, 48, 163, 0.3);
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.fcc-icon-circle svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.fcc-content {
    margin-top: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.fcc-title {
    color: #1e3a8a;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.fcc-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fcc-btn {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
}

.fcc-btn:hover {
    background: #dc2626;
    color: white;
}

/* --- ACCESS DETAILS SECTION --- */
.access-section {
    background: #ffffff;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .access-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 5rem;
    }
}

.access-title {
    color: #1e293b;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.access-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.access-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.access-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 2;
    flex: 1;
}

.as-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    transition: transform 0.3s ease;
    background: white;
    /* to cover dashed line behind if it overlaps */
    padding: 0 10px;
}

.access-step:hover {
    transform: translateY(-4px);
}
.access-step:hover .as-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.as-text {
    font-weight: 800;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.3;
}

.as-line {
    flex: 1;
    height: 1px;
    border-top: 3px dotted #cbd5e1;
    margin: 0 10px;
    position: relative;
    top: -25px;
    /* align center with icons */
}

@media (max-width: 576px) {
    .access-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .as-line {
        display: none;
    }
}

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0f2fe;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 11px;
    color: #0369a1;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Başlık */
.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    padding-top: 0.15em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc, #a855f7, #7c3aed);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-slow 4s ease-in-out infinite;
}
@keyframes shimmer-slow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Paragraf */
.hero-subtitle {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 88%;
}

/* CTA Butonlar */
.hero-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-hero-primary:hover {
    opacity: 0.9;
}

.btn-hero-secondary {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    border-color: #0ea5e9;
}

/* Trust Strip */
.hero-trust-strip {
    display: flex;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px dashed #cbd5e1;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.trust-label {
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   LAB TİPİ SEÇİCİ
   ============================================================ */
.hero-lab-selector {
    background: #fff;
    border: 1px solid #e0f2fe;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.10);
}

.lab-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.lab-selector-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 1px;
}

.lab-selector-live {
    font-size: 10px;
    color: #0ea5e9;
    font-weight: 600;
}

/* Tablar */
.lab-tabs {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.lab-tab {
    width: 100%;
    padding: 14px 18px;
    font-size: 13px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    text-align: left;
}

.lab-tab:hover {
    border-color: #bae6fd;
    color: #0369a1;
}

.lab-tab.active {
    background: linear-gradient(90deg, #0f172a, #3b2a7e);
    color: #fff;
    border-color: transparent;
    font-weight: 600;
}

.lab-tab-arrow {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.lab-tab.active .lab-tab-arrow {
    opacity: 1;
}

/* Aktif Panel */
.lab-panel {
    background: linear-gradient(135deg, #f0f9ff, #faf5ff);
    border-left: 3px solid #0ea5e9;
    padding: 18px 20px;
    border-radius: 10px;
    min-height: 120px;
}

.lab-panel-label {
    font-size: 11px;
    font-weight: 700;
    color: #0369a1;
    letter-spacing: 1px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.lab-panel-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.lab-panel-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 10px;
}

.lab-panel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.lab-chip {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 99px;
    font-weight: 600;
}

/* ============================================================
   Override old centered hero rules for new 2-column split layout
   ============================================================ */

/* Left column: remove centering constraint */
.hero-text {
    max-width: none;
    margin: 0;
    text-align: left;
}

/* Subtitle: remove auto horizontal centering */
.hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

/* CTA buttons: left-align instead of centered */
.hero-actions {
    justify-content: flex-start;
}

/* Right column: let the grid cell control sizing */
.hero-visual {
    max-width: none;
    margin: 0;
}

/* ============================================================
   MOBİL UYGULAMA BÖLÜMÜ
   ============================================================ */
/* ============================================================
   MOBILE APP — 3D Tilted Phone + Floating Glass Cards
   ============================================================ */
.app-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.app-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.app-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.app-orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #c7d2fe, transparent 70%);
    top: -120px;
    left: -120px;
}

.app-orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #bae6fd, transparent 70%);
    bottom: -100px;
    right: -80px;
}

.app-orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ddd6fe, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.app-section .container {
    position: relative;
    z-index: 1;
}

/* Header (centered) */
.app-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.app-section-badge {
    display: inline-block;
    font-size: 12px;
    color: #0ea5e9;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 99px;
    margin-bottom: 20px;
}

.app-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.app-title-accent {
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.app-section-desc {
    font-size: 17px;
    color: #475569;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

/* Stage v2 — Phone center + 2 feature columns */
.app-stage-v2 {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 36px;
    align-items: center;
    perspective: 1600px;
}

@media (max-width: 1024px) {
    .app-stage-v2 {
        grid-template-columns: 1fr;
        gap: 28px;
        justify-items: center;
    }
}

.app-feat-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.app-feat-col-left  { align-items: flex-end; }
.app-feat-col-right { align-items: flex-start; }

.feat-card {
    width: 100%;
    max-width: 360px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(255, 255, 255, 0.92);
}

.feat-card:hover .feat-card-arrow {
    transform: translateX(4px);
    color: #0ea5e9;
}

.feat-card-num {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.feat-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.feat-card-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
}

.feat-card-arrow {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

/* Legacy alias to keep old layout */
.app-stage {
    position: relative;
    min-height: 640px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
}

/* 3D Phone */
.phone-3d-wrapper {
    position: relative;
    z-index: 5;
}

.phone-3d {
    transform: none;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    filter: drop-shadow(0 50px 80px rgba(15, 23, 42, 0.25));
}

.phone-frame {
    background: linear-gradient(150deg, #1e293b, #0f172a);
    border: 2px solid #334155;
    border-radius: 42px;
    padding: 10px;
    width: 280px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 10px 30px rgba(15, 23, 42, 0.4);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #0f172a;
    border-radius: 99px;
    z-index: 2;
}

.phone-screen-inner {
    background: linear-gradient(180deg, #f0f9ff, #ffffff);
    border-radius: 32px;
    min-height: 540px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    position: relative;
}

.phone-screen-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.phone-screen-gif {
    position: absolute;
    inset: -23px 0px 1px 0px;
    width: 100% !important;
    height: 109% !important;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.phone-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone-placeholder-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.phone-placeholder-note {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    max-width: 200px;
}

/* Phone glow */
.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.20), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Floating Cards (positioned around phone) */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    width: 240px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.10),
        0 4px 12px rgba(14, 165, 233, 0.06);
    text-align: left;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.float-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.14),
        0 8px 18px rgba(14, 165, 233, 0.10);
    border-color: rgba(14, 165, 233, 0.4);
}

.float-card.active {
    background: linear-gradient(135deg, #0f172a, #3b2a7e);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(59, 42, 126, 0.35);
}

.float-card.active .float-card-num,
.float-card.active .float-card-title,
.float-card.active .float-card-desc {
    color: #fff;
}

.float-card.active .float-card-num {
    color: #7dd3fc;
}

.float-card-num {
    font-size: 11px;
    font-weight: 800;
    color: #0ea5e9;
    letter-spacing: 2px;
}

.float-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.float-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Card positions — corners around the phone */
.float-card-tl { top: 20px;    left: 0;     transform: translateY(0); }
.float-card-tr { top: 20px;    right: 0;    transform: translateY(0); }
.float-card-bl { bottom: 20px; left: 0;     transform: translateY(0); }
.float-card-br { bottom: 20px; right: 0;    transform: translateY(0); }

/* Responsive: stack on smaller screens */
@media (max-width: 1024px) {
    .app-stage {
        min-height: auto;
        flex-direction: column;
        gap: 40px;
        padding: 20px 0;
    }

    .phone-3d {
        transform: none;
    }

    .floating-cards {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 540px;
    }

    .float-card {
        position: static;
        width: 100%;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .floating-cards {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 240px;
    }

    .phone-screen-inner {
        min-height: 460px;
    }
}

/* Store buttons row */
.app-stores-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.store-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #0f172a;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.store-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.26);
}

.store-btn-v2 i {
    width: 28px;
    height: 28px;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-btn-line1 {
    font-size: 11px;
    opacity: 0.8;
}

.store-btn-line2 {
    font-size: 16px;
    font-weight: 700;
}

/* ============================================================
   PT MODAL — Generic modal (feature detail + demo form)
   ============================================================ */
.pt-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: ptModalFade 0.25s ease;
}

.pt-modal[hidden] { display: none; }

@keyframes ptModalFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pt-modal-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 36px 32px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.35);
    animation: ptModalRise 0.35s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.pt-modal-card-form {
    max-width: 580px;
}

/* Split modal — form left + contact info right */
.pt-modal-card-split {
    max-width: 880px;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
}

.pt-modal-form-side {
    padding: 36px 36px 32px;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
}

.pt-modal-info-side {
    padding: 36px 30px;
    background: linear-gradient(160deg, #0f172a 0%, #3b2a7e 100%);
    color: #fff;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 40px);
    min-width: 0;
}

.pt-modal-info-side::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pt-modal-card-split .pt-modal-close {
    background: rgba(255, 255, 255, 0.95);
    z-index: 5;
}

.pt-info-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    position: relative;
}

.pt-info-lead {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 22px;
    line-height: 1.5;
    position: relative;
}

.pt-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.pt-info-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: flex-start;
}

.pt-info-list i {
    width: 36px;
    height: 36px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #7dd3fc;
}

.pt-info-list > li > div {
    min-width: 0;
}

.pt-info-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.pt-info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
    transition: color 0.2s ease;
}

a.pt-info-value:hover {
    color: #7dd3fc;
}

@media (max-width: 768px) {
    .pt-modal-card-split {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .pt-modal-form-side {
        padding: 28px 22px 20px;
        max-height: none;
    }

    .pt-modal-info-side {
        padding: 24px 22px 28px;
        max-height: none;
    }
}

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

.pt-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.pt-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.pt-modal-close i {
    width: 18px;
    height: 18px;
}

.pt-modal-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.10);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.pt-modal-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.pt-modal-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 18px;
}

.pt-modal-bullets {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pt-modal-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.pt-modal-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
}

.pt-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-modal-primary {
    background: linear-gradient(135deg, #0f172a, #3b2a7e);
    color: #fff;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(59, 42, 126, 0.28);
}

.btn-modal-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(59, 42, 126, 0.36);
}

.btn-modal-block {
    width: 100%;
    padding: 15px 22px;
    font-size: 15px;
    margin-top: 6px;
}

.btn-modal-ghost {
    background: #f1f5f9;
    color: #475569;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-modal-ghost:hover {
    background: #e2e8f0;
}

/* Demo form */
.pt-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

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

@media (max-width: 560px) {
    .pt-modal-form .form-row {
        grid-template-columns: 1fr;
    }
    .pt-modal-card {
        padding: 28px 22px 24px;
    }
}

.pt-modal-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pt-modal-form .form-field > span {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.02em;
}

.pt-modal-form input,
.pt-modal-form textarea,
.pt-modal-form select {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pt-modal-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.pt-modal-form input:focus,
.pt-modal-form textarea:focus,
.pt-modal-form select:focus {
    outline: none;
    border-color: #0ea5e9;
    background-color: #fff;
}

.pt-modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.45;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #0ea5e9;
}

/* ============================================================
   HEADER ENHANCEMENTS — Animated CTA + hero badge pulse
   ============================================================ */
.navbar-pill {
    position: relative;
}

.nav-demo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e, #0ea5e9);
    background-size: 200% 200%;
    animation: navDemoShine 4s ease infinite;
    z-index: -1;
    opacity: 0.85;
}

.nav-demo-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

@keyframes navDemoShine {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.nav-demo-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: navDemoSweep 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes navDemoSweep {
    0%, 60% { left: -75%; }
    100%    { left: 130%; }
}

/* Hero badge enhancement — pulsing dot */
.hero-badge {
    position: relative;
    padding-left: 26px !important;
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ea5e9;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
    animation: heroBadgePulse 2s ease-out infinite;
}

@keyframes heroBadgePulse {
    0%   { box-shadow: 0 0 0 0   rgba(14, 165, 233, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0   rgba(14, 165, 233, 0); }
}

/* Lab tab — interactive enhancement */
.lab-tab {
    position: relative;
    overflow: hidden;
}

.lab-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0ea5e9, #3b2a7e);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.lab-tab:hover::before {
    transform: scaleY(1);
}

.lab-tab.active::before {
    transform: scaleY(1);
    background: rgba(255, 255, 255, 0.5);
}

.lab-tab .lab-tab-arrow {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.lab-tab:hover .lab-tab-arrow,
.lab-tab.active .lab-tab-arrow {
    transform: translateX(4px);
}

.lab-panel {
    animation: labPanelFade 0.4s cubic-bezier(.4,0,.2,1);
}

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

/* Body scroll lock when modal open */
body.pt-modal-open {
    overflow: hidden;
}

/* ============================================================
   VALUE STRIP — Why ProtezTakip section
   ============================================================ */
.value-strip-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.value-strip-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.value-strip-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.10);
    padding: 8px 18px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.value-strip-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.value-strip-accent {
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.value-strip-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* Stats row */
.value-strip-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 30px 36px;
    background: linear-gradient(135deg, #0f172a, #3b2a7e);
    border-radius: 22px;
    margin-bottom: 0;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.value-stat {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 12px;
}

.value-stat:last-child {
    border-right: none;
}

.value-stat-num {
    display: block;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.value-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .value-strip-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 20px;
    }
    .value-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 16px;
    }
    .value-stat:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Value cards grid */
.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1024px) {
    .value-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .value-strip-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    padding: 30px 26px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
    border-color: rgba(14, 165, 233, 0.5);
}

.value-card-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 18px;
}

.value-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.value-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    position: relative;
}

@media (max-width: 1024px) {
    .hero-slider {
        margin: 0 auto;
    }
}

.hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.7;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
                transform 0.6s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-slide-caption {
    text-align: center;
    padding: 2px 12px 0;
}

.hero-slide-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.10);
    padding: 6px 12px 5px;
    border-radius: 99px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hero-slide-caption p {
    font-size: 13px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

/* Dot navigation */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.hero-dot {
    width: 26px;
    height: 6px;
    border-radius: 99px;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-dot:hover { background: #94a3b8; }

.hero-dot.active {
    background: linear-gradient(90deg, #0ea5e9, #3b2a7e);
    width: 36px;
}

/* Slide 2: Dashboard mockup */
.hero-mock {
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.20);
    background: #fff;
    border: 1px solid #e2e8f0;
}

.hero-mock-dashboard {
    display: flex;
    flex-direction: column;
}

.hero-mock-bar {
    background: #f1f5f9;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.hmb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hmb-dot.r { background: #f87171; }
.hmb-dot.y { background: #fbbf24; }
.hmb-dot.g { background: #4ade80; }

.hmb-title {
    margin-left: 12px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.hero-mock-body {
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.hmb-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hmb-stat {
    background: linear-gradient(135deg, #f0f9ff, #faf5ff);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid #e0f2fe;
}

.hmb-stat-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.hmb-stat-label {
    font-size: 9px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.hmb-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 70px;
    padding: 0 4px;
}

.hmb-bar {
    flex: 1;
    background: linear-gradient(180deg, #0ea5e9, #3b2a7e);
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    animation: hmbBarGrow 1s cubic-bezier(.4,0,.2,1);
}

@keyframes hmbBarGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}

.hmb-row-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hmb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #475569;
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 8px;
}

.hmb-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hmb-row-dot.ok   { background: #10b981; }
.hmb-row-dot.warn { background: #f59e0b; }

/* Slide 3: Mobile mock */
.hero-mock-mobile {
    flex: 1;
    background: linear-gradient(135deg, #eef2ff, #faf5ff);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.hero-mock-phone {
    width: 180px;
    aspect-ratio: 9 / 19;
    background: #0f172a;
    border-radius: 28px;
    padding: 6px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

/* Dual-phone layout */
.hero-phones {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px 8px;
    box-sizing: border-box;
}
.hero-phones .hero-mock-phone {
    width: 42%;
    max-width: 150px;
    aspect-ratio: 9 / 19;
    flex-shrink: 1;
}
.hero-phones .phone-courier {
    transform: translateY(8px) rotate(-3deg);
}
.hero-phones .phone-tech {
    transform: translateY(-8px) rotate(3deg);
}
@media (max-width: 480px) {
    .hero-phones { gap: 10px; padding: 10px 4px; }
    .hero-phones .hero-mock-phone { max-width: 120px; }
}

.hero-mock-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

/* Animated phone screen (replaces gif) */
.hmp-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 55%, #3b2a7e 100%);
    border-radius: 22px;
    padding: 10px 9px 9px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hmp-screen-courier {
    background: linear-gradient(165deg, #0f172a 0%, #0c4a6e 55%, #0369a1 100%);
}

.hmp-screen::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(14,165,233,0.35), transparent 60%);
    filter: blur(20px);
    animation: hmpGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hmpGlow {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50%      { opacity: 1;   transform: translateY(8px); }
}

.hmp-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 700;
    color: #cbd5e1;
    z-index: 1;
}

.hmp-dots { display: inline-flex; gap: 3px; }
.hmp-dots i {
    width: 4px; height: 4px; border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
}

.hmp-header { z-index: 1; }
.hmp-hello {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.hmp-sub {
    display: block;
    font-size: 8px;
    color: #94a3b8;
    margin-top: 2px;
}

.hmp-progress {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 8px;
    z-index: 1;
}
.hmp-progress-track {
    height: 5px;
    background: rgba(255,255,255,0.10);
    border-radius: 99px;
    overflow: hidden;
}
.hmp-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8, #a78bfa);
    border-radius: 99px;
    animation: hmpFill 3.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes hmpFill {
    0%   { width: 0%; }
    55%  { width: 72%; }
    100% { width: 72%; }
}
.hmp-progress-label {
    display: block;
    font-size: 8px;
    color: #cbd5e1;
    margin-top: 4px;
}
.hmp-progress-label b { color: #fff; font-weight: 800; }

.hmp-tasks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}
.hmp-task {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 7px;
    border-radius: 7px;
    font-size: 8px;
    color: #e2e8f0;
    line-height: 1.3;
    opacity: 0;
    transform: translateX(8px);
    animation: hmpTaskIn 4.2s ease infinite;
}
.hmp-task:nth-child(1) { animation-delay: 0.2s; }
.hmp-task:nth-child(2) { animation-delay: 0.7s; }
.hmp-task:nth-child(3) { animation-delay: 1.2s; }

@keyframes hmpTaskIn {
    0%   { opacity: 0; transform: translateX(8px); }
    15%  { opacity: 1; transform: translateX(0); }
    85%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-8px); }
}

.hmp-tick {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    flex-shrink: 0;
    position: relative;
}

/* Courier map animation */
.hmp-map {
    position: relative;
    height: 70px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}
.hmp-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 12px 12px;
}
.hmp-map-line {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #a78bfa);
    border-radius: 99px;
    transform: translateY(-50%);
    opacity: 0.8;
}
.hmp-map-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(56,189,248,0.5);
    top: 50%;
    transform: translate(-50%, -50%);
}
.pin-a { left: 12%; }
.pin-b { left: 50%; background: #38bdf8; }
.pin-c { left: 88%; }
.hmp-map-courier {
    position: absolute;
    top: 50%;
    left: 12%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251,191,36,0.35), 0 0 12px rgba(251,191,36,0.6);
    transform: translate(-50%, -50%);
    animation: hmpCourierMove 5s ease-in-out infinite;
}
@keyframes hmpCourierMove {
    0%   { left: 12%; }
    45%  { left: 50%; }
    55%  { left: 50%; }
    100% { left: 88%; }
}
.hmp-tasks-courier .hmp-task { animation-duration: 5s; }
.hmp-task.done .hmp-tick {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
}
.hmp-task.done .hmp-tick::after {
    content: "";
    position: absolute;
    inset: 2px 3px 3px 2px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) translate(-1px, -1px);
}
.hmp-task.active .hmp-tick {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.18);
    animation: hmpPulse 1.6s ease-in-out infinite;
}
@keyframes hmpPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(56,189,248,0.18); }
    50%      { box-shadow: 0 0 0 5px rgba(56,189,248,0.30); }
}

.hero-mock-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hmf {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0f172a;
    padding: 9px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    animation: heroChipFloat 4s ease-in-out infinite;
}

.hmf i {
    width: 14px;
    height: 14px;
    color: #0ea5e9;
}

.hmf-1 { top: 24px; left: 18px; }
.hmf-2 { bottom: 24px; right: 18px; animation-delay: 1.5s; }

/* Dual phone floats: courier (left) stacked top+bottom, tech (right) stacked top+bottom */
.hmf-c1 { top: 18px;    left: 8px;  animation-delay: 0s;   }
.hmf-c2 { bottom: 18px; left: 8px;  animation-delay: 1s;   }
.hmf-t1 { top: 18px;    right: 8px; animation-delay: 0.5s; }
.hmf-t2 { bottom: 18px; right: 8px; animation-delay: 1.5s; }

@media (max-width: 540px) {
    .hmf-c1, .hmf-c2, .hmf-t1, .hmf-t2 { font-size: 9px; padding: 6px 10px; }
}

/* ============================================================
   HERO VIDEO PREVIEW CARD (used inside slide 1)
   ============================================================ */
.hero-video-card {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}

.hero-video-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    border: none;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #3b2a7e 100%);
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25),
                0 6px 20px rgba(59, 42, 126, 0.20);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.4s ease;
}

.hero-video-trigger:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.3),
                0 10px 28px rgba(59, 42, 126, 0.28);
}

/* Screenshot variant: full-bleed dashboard image with play overlay */
.hero-video-trigger--shot {
    background: #fff;
    border: 1px solid #e2e8f0;
}
.hero-video-shot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.05) 0%, rgba(15,23,42,0.30) 60%, rgba(15,23,42,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-video-trigger--shot .hero-video-play,
.hero-video-trigger--shot .hero-video-chip {
    z-index: 2;
}
.hero-video-trigger--shot:hover .hero-video-shot {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(125, 211, 252, 0.55),
        rgba(167, 139, 250, 0.25) 40%,
        transparent 70%);
    filter: blur(40px);
    animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.hero-video-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-radius: 99px;
    padding: 16px 28px 16px 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 5;
}

.hero-video-trigger:hover .hero-video-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-video-play i {
    width: 22px;
    height: 22px;
    fill: #0f172a;
    color: #0f172a;
}

/* Floating chips */
.hero-video-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0f172a;
    padding: 9px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    animation: heroChipFloat 4s ease-in-out infinite;
    z-index: 4;
}

.hero-video-chip i {
    width: 14px;
    height: 14px;
    color: #0ea5e9;
}

.hvc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: heroBadgePulse 2s ease-out infinite;
}

.hero-video-chip-1 {
    top: 24px;
    left: 24px;
    animation-delay: 0s;
}

.hero-video-chip-2 {
    bottom: 28px;
    left: 24px;
    background: rgba(16, 185, 129, 0.96);
    color: #fff;
    animation-delay: 1s;
}

.hero-video-chip-2 i { color: #fff; }

.hero-video-chip-3 {
    top: 28px;
    right: 24px;
    animation-delay: 2s;
}

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

@media (max-width: 1024px) {
    .hero-video-card {
        margin-left: 0;
        margin-right: auto;
        max-width: 100%;
    }
}

/* ============================================================
   POWERFUL FEATURES — Stepper Section (Carestack-style)
   ============================================================ */
.powerful-features {
    padding: 50px 0;
    background: #f8fafc;
}

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

.pf-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.10);
    padding: 8px 18px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.pf-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.pf-title-accent {
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pf-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.pf-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .pf-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Stepper sidebar */
.pf-stepper {
    position: sticky;
    top: 110px;
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .pf-stepper {
        position: relative;
        top: auto;
    }
}

.pf-stepper-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid #e2e8f0;
}

@media (max-width: 1024px) {
    .pf-stepper-list {
        flex-direction: row;
        overflow-x: auto;
        border-left: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 4px;
        gap: 8px;
    }
}

.pf-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 0 12px 12px 0;
    user-select: none;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .pf-step {
        border-radius: 99px;
        white-space: nowrap;
        padding: 10px 16px;
        background: #fff;
        border: 1px solid #e2e8f0;
    }
}

.pf-step:hover {
    color: #0f172a;
}

.pf-step.active {
    color: #0f172a;
    font-weight: 700;
}

.pf-step-line {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: transparent;
    border-radius: 2px;
    transition: background 0.3s ease, height 0.3s ease;
}

@media (max-width: 1024px) {
    .pf-step-line { display: none; }
}

.pf-step.active .pf-step-line {
    background: linear-gradient(180deg, #0ea5e9, #3b2a7e);
    height: 32px;
}

.pf-step-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pf-step-name {
    font-size: 15px;
    letter-spacing: -0.005em;
    line-height: 1.35;
}

.pf-stepper-list--noicon .pf-step {
    gap: 0;
    padding-left: 22px;
}

@media (max-width: 1024px) {
    .pf-step-name { font-size: 13px; }
}

.pf-stepper-cta {
    margin-top: 30px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.pf-stepper-cta p {
    font-size: 13px;
    color: #475569;
    margin: 0 0 12px;
    line-height: 1.5;
}

.btn-pf-cta {
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #3b2a7e);
    color: #fff;
    border: none;
    padding: 13px 18px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(59, 42, 126, 0.25);
}

.btn-pf-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(59, 42, 126, 0.32);
}

@media (max-width: 1024px) {
    .pf-stepper-cta { display: none; }
}

/* PF Content blocks */
.pf-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pf-block {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    background: #fff;
    scroll-margin-top: 120px;
}

.pf-card-top {
    background: linear-gradient(120deg, #eff6ff 30%, #f5f3ff 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    min-height: 220px;
}

@media (max-width: 768px) {
    .pf-card-top {
        grid-template-columns: 1fr;
    }
}

.pf-card-info {
    padding: 36px 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pf-card-icon {
    width: 44px;
    height: 44px;
    color: #0f172a;
    margin-bottom: 16px;
}

.pf-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.15;
}

.pf-card-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
    max-width: 420px;
}

.pf-card-visual {
    width: 280px;
    overflow: hidden;
}

.pf-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .pf-card-visual {
        width: 100%;
        height: 180px;
    }
}

.pf-card-grid {
    background: #0f172a;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 36px;
    padding: 30px 36px;
}

@media (max-width: 768px) {
    .pf-card-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.pf-feat {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    padding: 16px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
    font-family: inherit;
}

.pf-feat:hover {
    color: #7dd3fc;
    border-bottom-color: #7dd3fc;
    padding-left: 6px;
}

.pf-feat-arrow {
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.pf-feat:hover .pf-feat-arrow {
    transform: translateX(4px);
    color: #7dd3fc;
}

/* Video modal */
.pt-modal-card-video {
    max-width: 920px;
    width: 100%;
    padding: 0;
    background: #0f172a;
    border-radius: 18px;
    overflow: visible;
}

.pt-modal-card-video .pt-modal-close {
    background: rgba(255, 255, 255, 0.95);
    top: -16px;
    right: -16px;
    z-index: 10;
}

.pt-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
}

.pt-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==== Özellikler sayfası — feature listing ==== */
.feat-page-hero {
    background: linear-gradient(135deg, #1a0e35 0%, #2d1b69 50%, #1a0e35 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.feat-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(125,211,240,0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167,139,250,0.12), transparent 50%);
    pointer-events: none;
}
.feat-page-hero .container { position: relative; text-align: center; max-width: 760px; }
.feat-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    background: rgba(125,211,252,0.12);
    border: 1px solid rgba(125,211,252,0.25);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}
.feat-hero-title {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.feat-hero-title .accent {
    background: linear-gradient(90deg, #7dd3fc, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.feat-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin: 0 auto 1.5rem;
    max-width: 620px;
}
.feat-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}
.feat-hero-breadcrumb a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s; }
.feat-hero-breadcrumb a:hover { color: #fff; }
.feat-hero-breadcrumb strong { color: #fff; font-weight: 600; }

/* Tabs */
.feat-section { padding: 4rem 0; background: var(--bg-light, #f8fafc); }
.feat-tabs-wrap { margin-bottom: 2.25rem; }
.feat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.feat-tab {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1.1rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.feat-tab:hover { border-color: #c4b5fd; color: #3b2a7e; }
.feat-tab.active {
    background: linear-gradient(135deg, #3b2a7e, #6d28d9);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(59,42,126,0.25);
}

/* Grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}
.feat-card-link {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.6rem 1.5rem 1.4rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feat-card-link::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #3b2a7e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feat-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15,23,42,0.10);
    border-color: rgba(139,92,246,0.35);
}
.feat-card-link:hover::after { transform: scaleX(1); }
.feat-card-link.is-hidden { display: none; }
.feat-card-h {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.6rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.feat-card-d {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 0.85rem;
    flex-grow: 1;
}
.feat-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.feat-card-bullets li {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.feat-card-bullets li::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #8b5cf6;
    flex-shrink: 0;
}
.feat-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #3b2a7e;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}
.feat-card-link:hover .feat-card-cta { gap: 0.6rem; }
.feat-card-cta svg { width: 16px; height: 16px; }

/* Legacy hero overrides for features page */
.page-banner { display: none; }

/* App banner */
.app-banner {
    background: #1f2937;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}
.app-banner-text h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.app-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}
.app-banner-btns {
    display: flex;
    gap: 1rem;
}
.app-banner-btn {
    background: white;
    color: #1f2937;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.app-banner-btn:hover {
    background: #f3f4f6;
}

@media (max-width: 768px) {
    .app-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .app-banner-btns {
        flex-direction: column;
        width: 100%;
    }
    .app-banner-btn {
        justify-content: center;
    }
}

/* ===== Fiyatlandırma sayfası ===== */
.pricing-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1a0e35 0%, #2d1b69 50%, #1a0e35 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 30%, rgba(125,211,240,0.16), transparent 50%),
        radial-gradient(circle at 78% 70%, rgba(167,139,250,0.13), transparent 50%);
    pointer-events: none;
}
.pricing-hero .container { position: relative; }
.pricing-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    background: rgba(125,211,252,0.12);
    border: 1px solid rgba(125,211,252,0.25);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.pricing-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin: 0.25rem auto 1rem;
}
.pricing-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Toggle */
.pt-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 3rem 0 2.5rem;
    flex-wrap: wrap;
}
.pt-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.18s;
}
.pt-toggle-label.active { color: #0f172a; }
.pt-toggle-btn {
    width: 48px; height: 26px;
    border-radius: 13px;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
    padding: 0;
}
.pt-toggle-btn::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 3px; left: 3px;
    transition: left 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.pt-toggle-btn.annual { background: #0ea5e9; }
.pt-toggle-btn.annual::after { left: 25px; }
.pt-save-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Plan kartları */
.pt-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1120px;
    margin: 0 auto 2.5rem;
}
@media (max-width: 860px) { .pt-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pt-cards-grid { grid-template-columns: 1fr; } }

.pt-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.pt-card:hover {
    box-shadow: 0 12px 36px rgba(15,23,42,0.10);
    transform: translateY(-2px);
}
.pt-card--pop {
    border-color: #0ea5e9;
    box-shadow: 0 12px 42px rgba(14,165,233,0.16);
}
.pt-card__popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9, #3b2a7e);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.pt-card__name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    margin-bottom: 4px;
}
.pt-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pt-card__sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.55;
}

.pt-price-wrap { margin-bottom: 20px; }
.pt-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pt-price__sym {
    font-size: 22px;
    font-weight: 700;
    color: #0ea5e9;
}
.pt-price__amt {
    font-size: 44px;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pt-price__per {
    font-size: 14px;
    color: #64748b;
}
.pt-price__addon {
    font-size: 12px;
    color: #0ea5e9;
    font-weight: 600;
    margin-top: 4px;
    min-height: 18px;
}
.pt-price__total {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0369a1;
    background: #e0f2fe;
    border-radius: 6px;
    padding: 3px 10px;
    margin-top: 8px;
}
.pt-price__total:empty { display: none; }

.pt-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 10px 0 18px;
}

.pt-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pt-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}
.pt-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.pt-feature-icon--check { color: #22c55e; }
.pt-feature-icon--x { color: #cbd5e1; }

.pt-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.18s;
    margin-top: auto;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.pt-btn--primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
}
.pt-btn--primary:hover {
    box-shadow: 0 10px 24px rgba(14,165,233,0.3);
    transform: translateY(-1px);
}
.pt-btn--outline {
    border: 2px solid #e2e8f0;
    color: #475569;
    background: #fff;
}
.pt-btn--outline:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}
.pt-card--enterprise {
    border-color: #1e293b;
    background: #f8fafc;
}
.pt-card--enterprise:hover {
    border-color: #334155;
    box-shadow: 0 12px 36px rgba(30,41,59,0.14);
}
.pt-btn--enterprise {
    background: #1e293b;
    color: #fff;
}
.pt-btn--enterprise:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* Ek kullanıcı seçici */
.pt-addon-wrap {
    max-width: 1120px;
    margin: 0 auto 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 1.5rem 1.75rem;
}
.pt-addon-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}
.pt-addon-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.pt-addon-hint {
    font-size: 12px;
    color: #64748b;
}
.pt-addon-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pt-addon-opt {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.pt-addon-opt:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}
.pt-addon-opt.selected {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
    box-shadow: 0 2px 10px rgba(14,165,233,0.3);
}
.pt-addon-opt.contact-plan {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1;
}
.pt-addon-opt.contact-plan.selected {
    background: #0369a1;
    border-color: #0369a1;
    color: #fff;
}
.pt-addon-info {
    margin-top: 14px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}
.pt-addon-info__text { color: #475569; }
.pt-addon-info__price {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 15px;
}

/* Güven şeridi */
.pt-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 2.25rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin: 0;
}
.pt-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.pt-trust-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Karşılaştırma tablosu */
.pt-compare-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.pt-compare-head {
    text-align: center;
    margin-bottom: 2rem;
}
.pt-compare-head__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #0ea5e9;
    background: rgba(14,165,233,0.10);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.pt-compare-head h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}
.pt-compare-head p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(15,23,42,0.06);
}
.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}
.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #475569;
}
.compare-table th {
    background: #f8fafc;
    font-weight: 800;
    color: #0f172a;
    font-size: 13px;
}
.compare-table th.pop-col {
    background: #f0f9ff;
    color: #0369a1;
}
.compare-table td.pop-col { background: #fafeff; }
.compare-table tbody tr:hover td { background: #f8fafc; }
.compare-table tbody tr:hover td.pop-col { background: #f0f9ff; }
.compare-table__group td {
    background: #f1f5f9 !important;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    padding: 10px 16px;
}
.ct-check { color: #22c55e; }
.ct-x { color: #cbd5e1; }
@media (max-width: 640px) {
    .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare-table th, .compare-table td { white-space: nowrap; font-size: 12px; padding: 10px 12px; }
}

/* Pricing FAQ */
.pt-faq-section { padding: 4rem 0; background: #fff; }
.pt-faq-head { text-align: center; margin-bottom: 2.5rem; }
.pt-faq-head__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #0ea5e9;
    background: rgba(14,165,233,0.10);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.pt-faq-head h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}
.pt-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pt-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pt-faq-item[open] {
    border-color: #c4b5fd;
    box-shadow: 0 6px 20px rgba(59,42,126,0.08);
}
.pt-faq-item summary {
    cursor: pointer;
    padding: 1.1rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.pt-faq-item summary::-webkit-details-marker { display: none; }
.pt-faq-item summary::after {
    content: "";
    width: 18px; height: 18px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s;
}
.pt-faq-item[open] summary::after {
    transform: rotate(-135deg);
    border-color: #3b2a7e;
}
.pt-faq-item .pt-faq-a {
    padding: 0 1.35rem 1.2rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Alt CTA */
.pt-cta-band {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}
.pt-cta-band h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #fff;
    letter-spacing: -0.01em;
}
.pt-cta-band p {
    color: rgba(255,255,255,0.78);
    margin: 0 0 1.75rem;
}
.pt-cta-band__actions {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.pt-cta-band__actions .btn {
    padding: 0.9rem 1.75rem;
    font-weight: 700;
}
.pt-cta-band__actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: transparent;
}
.pt-cta-band__actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}
.legacy-hidden { display: none !important; }

/* ===== Blog sayfası ===== */
.blog-list-section {
    padding: 5rem 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.blog-img-wrapper {
    height: 220px;
    position: relative;
    background: #e2e8f0;
    overflow: hidden;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.blog-meta-item i {
    width: 14px;
    height: 14px;
}
.blog-title {
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}
.blog-card:hover .blog-title {
    color: var(--color-primary);
}
.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}
.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}
.blog-read-more i {
    width: 16px;
    transition: transform 0.2s;
}
.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.page-link:hover {
    background: #f1f5f9;
}
.page-link.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ===== Blog detay & Feature detail ===== */
.fd-hero {
    background: linear-gradient(135deg, #1a0e35 0%, #2d1b69 50%, #1a0e35 100%);
    color: #fff;
    padding: 6.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.fd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(125,211,240,0.16), transparent 50%),
        radial-gradient(circle at 82% 70%, rgba(167,139,250,0.13), transparent 50%);
    pointer-events: none;
}
.fd-hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .fd-hero .container { grid-template-columns: 1fr; }
}
.fd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.fd-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.fd-breadcrumb a:hover { color: #fff; }
.fd-breadcrumb span { color: rgba(255,255,255,0.35); }
.fd-breadcrumb strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.fd-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    background: rgba(125,211,252,0.12);
    border: 1px solid rgba(125,211,252,0.25);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.fd-h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.fd-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin: 0;
    max-width: 620px;
}
.fd-pkg {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    min-width: 220px;
}
.fd-pkg-lbl {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}
.fd-pkg-nm {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.fd-pkg-sub { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* Benefits */
.fd-benefits { padding: 4rem 0; background: #fff; }
.fd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 3rem;
}
@media (max-width: 640px) {
    .fd-benefits-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
.fd-ben-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}
.fd-ben-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.fd-ben-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Checklist */
.fd-checklist { padding: 4rem 0; background: #f8fafc; }
.fd-checklist-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.fd-checklist-h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}
.fd-checklist-sub {
    font-size: 1rem;
    color: #475569;
    margin: 0;
}
.fd-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .fd-checklist-grid { grid-template-columns: 1fr; }
}
.fd-ci {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #334155;
    padding: 0.4rem 0;
}
.fd-ci-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(14,165,233,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.fd-ci-dot svg {
    width: 11px;
    height: 11px;
    stroke: #0ea5e9;
    stroke-width: 3;
}

/* Nav strip */
.fd-nav-strip {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}
.fd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.fd-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.2s, color 0.2s;
}
.fd-nav-btn:hover { border-color: #94a3b8; color: #334155; }
.fd-nav-btn svg { width: 16px; height: 16px; }
.fd-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b2a7e, #6d28d9);
    color: #fff;
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}
.fd-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(59,42,126,0.28);
}
.fd-nav-cta svg { width: 16px; height: 16px; }

/* Blog detay */
.bd-hero { padding: 5.5rem 0 2.5rem; }
.bd-hero .container { display: block; }
.bd-hero__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    margin-top: 1.25rem; color: rgba(255,255,255,0.7); font-size: 0.88rem;
}
.bd-hero__meta-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.bd-hero__meta-item i { width: 15px; height: 15px; }
.bd-cat {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: #7dd3fc; background: rgba(125,211,252,0.12);
    border: 1px solid rgba(125,211,252,0.25); padding: 5px 14px; border-radius: 99px;
    margin-bottom: 1rem;
}
.bd-featured {
    max-width: 960px; margin: -1.5rem auto 0; padding: 0 1.5rem; position: relative; z-index: 2;
}
.bd-featured img {
    width: 100%; height: auto; border-radius: 16px; display: block;
    box-shadow: 0 20px 60px rgba(15,23,42,0.25);
    aspect-ratio: 16/8; object-fit: cover;
}
.bd-article-wrap { padding: 3.5rem 0 4rem; background: #fff; }
.bd-article-wrap .container { max-width: 780px; }
.bd-article { color: #334155; font-size: 1.05rem; line-height: 1.8; }
.bd-article p { margin: 0 0 1.25rem; }
.bd-article > p:first-of-type { font-size: 1.18rem; color: #1e293b; font-weight: 500; line-height: 1.65; }
.bd-article h2 {
    font-size: clamp(1.45rem, 2.4vw, 1.75rem); font-weight: 800; color: #0f172a;
    margin: 2.5rem 0 1rem; letter-spacing: -0.01em; line-height: 1.3;
}
.bd-article h3 {
    font-size: 1.2rem; font-weight: 700; color: #0f172a;
    margin: 1.75rem 0 0.75rem;
}
.bd-article ul, .bd-article ol { margin: 0 0 1.5rem; padding-left: 1.4rem; }
.bd-article li { margin-bottom: 0.6rem; }
.bd-article a { color: #3b2a7e; text-decoration: underline; text-underline-offset: 3px; }
.bd-article strong { color: #0f172a; }
.bd-article blockquote {
    margin: 2rem 0; padding: 1.25rem 1.5rem;
    background: #f5f3ff; border-left: 4px solid #8b5cf6;
    border-radius: 0 10px 10px 0;
    color: #3b2a7e; font-size: 1.05rem; font-style: italic;
}
.bd-article blockquote p { margin: 0; }
.bd-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid #e2e8f0;
}
.bd-tag {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: #475569; background: #f1f5f9; padding: 6px 12px; border-radius: 99px;
    text-decoration: none; transition: background 0.2s, color 0.2s;
}
.bd-tag:hover { background: #e0e7ff; color: #3b2a7e; }
.bd-share {
    display: flex; align-items: center; gap: 0.75rem;
    margin-top: 1.5rem; font-size: 0.88rem; color: #64748b;
}
.bd-share__label { font-weight: 600; }
.bd-share__btns { display: inline-flex; gap: 0.5rem; }
.bd-share a {
    width: 34px; height: 34px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #f1f5f9; color: #475569; transition: all 0.2s;
}
.bd-share a:hover { background: #3b2a7e; color: #fff; }
.bd-share a i { width: 16px; height: 16px; }

/* İlgili yazılar */
.bd-related { background: #f8fafc; padding: 4rem 0; }
.bd-related__head { text-align: center; margin-bottom: 2rem; }
.bd-related__eyebrow {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
    color: #0ea5e9; background: rgba(14,165,233,0.10);
    padding: 5px 14px; border-radius: 99px; margin-bottom: 0.75rem;
}
.bd-related__head h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; color: #0f172a;
    margin: 0; letter-spacing: -0.01em;
}
.bd-related__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 860px) { .bd-related__grid { grid-template-columns: 1fr; } }
.bd-related__card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #e2e8f0; text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.bd-related__card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,23,42,0.1); }
.bd-related__img { aspect-ratio: 16/10; overflow: hidden; }
.bd-related__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bd-related__card:hover .bd-related__img img { transform: scale(1.05); }
.bd-related__body { padding: 1.25rem 1.35rem 1.5rem; }
.bd-related__cat {
    font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: #0ea5e9;
}
.bd-related__title {
    font-size: 1.05rem; font-weight: 700; color: #0f172a;
    margin: 0.5rem 0 0; line-height: 1.4;
}

/* ===== Referanslar sayfası ===== */
.references-section {
    padding: 5rem 0;
    text-align: center;
}
.references-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}
.ref-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}
.ref-card:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}
.ref-card svg {
    transition: all 0.3s ease;
}

/* Tüm Referanslar */
.all-refs-section {
    background: #f8fafc;
    padding: 4.5rem 0 5rem;
    border-top: 1px solid #e2e8f0;
}
.all-refs-head {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 720px;
}
.all-refs-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #0ea5e9;
    background: rgba(14,165,233,0.10);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 0.85rem;
}
.all-refs-title {
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}
.all-refs-sub {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}
.all-refs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.15rem 2rem;
}
@media (max-width: 900px) {
    .all-refs__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .all-refs__list { grid-template-columns: 1fr; }
}
.all-refs__item {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.5rem;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.4;
    transition: color 0.2s;
}
.all-refs__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0ea5e9;
}
.all-refs__item:hover {
    color: #0f172a;
}

/* ===== SSS sayfası ===== */
.sss-hero {
    background: linear-gradient(135deg, #1a0e35 0%, #2d1b69 50%, #1a0e35 100%);
    color: #fff;
    padding: 5.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sss-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(125,211,240,0.16), transparent 50%),
        radial-gradient(circle at 82% 70%, rgba(167,139,250,0.13), transparent 50%);
    pointer-events: none;
}
.sss-hero .container { position: relative; }
.sss-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    background: rgba(125,211,252,0.12);
    border: 1px solid rgba(125,211,252,0.25);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.sss-hero h1 {
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.sss-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto;
}

/* Search box */
.sss-search-wrap {
    max-width: 560px;
    margin: 2rem auto 0;
    position: relative;
}
.sss-search {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.sss-search::placeholder { color: rgba(255,255,255,0.5); }
.sss-search:focus {
    border-color: #7dd3fc;
    background: rgba(255,255,255,0.12);
}
.sss-search-wrap i,
.sss-search-wrap > svg,
.sss-search-wrap > .lucide {
    position: absolute !important;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px !important;
    height: 18px !important;
    color: rgba(255,255,255,0.55);
    pointer-events: none;
    z-index: 1;
}

/* FAQ Page */
.sss-page { padding: 4rem 0 4.5rem; background: #fff; }
.sss-page .container { max-width: 960px; }
.sss-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}
.sss-tab {
    padding: 0.55rem 1rem;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.sss-tab:hover { border-color: #8b5cf6; color: #3b2a7e; }
.sss-tab.is-active {
    background: #3b2a7e;
    border-color: #3b2a7e;
    color: #fff;
}
.sss-category { display: none; }
.sss-category.is-active { display: block; }
.sss-category__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}
.sss-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.sss-q {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sss-q[open] {
    border-color: #c4b5fd;
    box-shadow: 0 6px 20px rgba(59,42,126,0.08);
}
.sss-q summary {
    cursor: pointer;
    padding: 1.1rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sss-q summary::-webkit-details-marker { display: none; }
.sss-q summary::after {
    content: "";
    width: 16px; height: 16px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s;
    margin-top: -4px;
}
.sss-q[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
    border-color: #3b2a7e;
}
.sss-q__a {
    padding: 0 1.35rem 1.2rem;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.75;
}
.sss-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    display: none;
}
.sss-empty.is-visible { display: block; }

/* Contact CTA */
.sss-contact-cta {
    background: #f8fafc;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}
.sss-contact-cta h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}
.sss-contact-cta p {
    color: #64748b;
    margin: 0 0 1.75rem;
    font-size: 1rem;
}
.sss-contact-cta__actions {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Page banner (blog & referanslar) */
.page-banner {
    background: #f1f5f9;
    padding: 4rem 0 3rem;
    text-align: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}
.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}

/* ===== İletişim sayfası ===== */
.contact-section {
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}
.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.5rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-text h4 {
    font-size: 1.1rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}
.contact-item-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
.contact-form-title {
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}
.contact-form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
    font-size: 0.9rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: var(--color-primary-dark);
}
.map-section {
    margin-bottom: -5rem;
    position: relative;
    z-index: 5;
}
.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #e2e8f0;
}
@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}