/* ================================================================
   Aspalo Premium — Studio-grade visual layer
   Content/IA unchanged — reskin + motion scaffolding only
   ================================================================ */

:root {
    --premium-accent: #6366f1;
    --premium-accent-2: #8b5cf6;
    --premium-glow: rgba(99, 102, 241, 0.45);
    --premium-dark: #030712;
    --premium-dark-2: #0b1220;
    --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --premium-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --premium-radius-xl: 24px;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ── Scroll progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
}
.scroll-progress-bar {
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d8b4fe);
    box-shadow: 0 0 20px var(--premium-glow);
}

/* ── Custom cursor glow (desktop) ── */
.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, rgba(139, 92, 246, 0.06) 35%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}
.premium-site.cursor-ready .cursor-glow { opacity: 1; }

/* ── Global typography & rhythm ── */
.premium-site {
    background: #ffffff;
}

.premium-site .container {
    max-width: 1200px;
}

/* Typography: Fraunces display serif for headlines, Plus Jakarta Sans for UI/body */
.premium-site .hero-title {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 500;
    max-width: 18em;
}

.premium-site .section-title {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    font-weight: 500;
}

.premium-site .section-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 620px;
}

.premium-site .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    letter-spacing: 0.12em;
}

.premium-site .section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--premium-accent);
    box-shadow: 0 0 12px var(--premium-glow);
}

/* ── Gradient text — electric ── */
.premium-site .gradient-text {
    background: linear-gradient(120deg, #a5b4fc 0%, #6366f1 35%, #8b5cf6 65%, #c4b5fd 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premium-gradient-flow 6s ease infinite;
}

.premium-site .hero-title .gradient-text {
    background: linear-gradient(180deg, #05091c, #262cc0);
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.premium-site .how-it-works .section-title .gradient-text {
    background: linear-gradient(180deg, #05091c, #262cc0);
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: none;
    filter: none;
}

@keyframes premium-gradient-flow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero line split for motion */
.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}
.hero-line-inner {
    display: inline-block;
    will-change: transform, opacity, filter;
}

/* ── Navbar — floating glass pill ── */
.premium-site .navbar {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    border-radius: 100px;
    padding: 10px 12px 10px 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 8px 40px -12px rgba(15, 23, 42, 0.15);
}

.premium-site .navbar--scrolled {
    top: 10px;
    padding: 8px 10px 8px 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 48px -16px rgba(15, 23, 42, 0.22);
}

.premium-site .logo-img {
    height: 52px;
}

.premium-site .nav-links a:not(.btn) {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    position: relative;
}

.premium-site .nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--premium-ease);
}

.premium-site .nav-links a:not(.btn):hover {
    color: #0f172a;
}

.premium-site .nav-links a:not(.btn):hover::after {
    transform: scaleX(1);
}

.premium-site .btn-nav {
    border-radius: 100px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.25);
}

.premium-site .btn-primary {
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    background: linear-gradient(180deg, #05091c, #262cc0);
    box-shadow: 0 8px 32px rgba(38, 44, 192, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.premium-site .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--premium-ease);
}

.premium-site .btn-primary:hover {
    transform: translateY(-4px);
}

.premium-site .btn-primary:hover::after {
    transform: translateX(120%);
}

.premium-site .btn-nav:hover,
.premium-site .hero-cta-secondary.hero-cta-listen:hover {
    transform: translateY(-3px);
}

/* ── HERO — soft light ── */
.premium-site .hero {
    min-height: 100svh;
    padding: 100px 0 48px;
    background: #ffffff;
    color: var(--primary);
    isolation: isolate;
}

.premium-site .aurora-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.premium-site .hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: aurora-drift 18s ease-in-out infinite;
    pointer-events: none;
}

.premium-site .hero-aurora--1 {
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
}

.premium-site .hero-aurora--2 {
    width: 45vw;
    height: 45vw;
    max-width: 560px;
    max-height: 560px;
    bottom: -10%;
    left: -12%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.12) 0%, transparent 70%);
    animation-delay: -6s;
}

.premium-site .hero-aurora--3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation-delay: -12s;
}

@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -4%) scale(1.06); }
    66% { transform: translate(-4%, 3%) scale(0.96); }
}

.premium-site .hero-mesh {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 10%, transparent 75%);
    opacity: 0.5;
}

.premium-site .hero-gradient { display: none; }

.premium-site .hero-noise {
    display: none;
}

.premium-site .hero-fade-bottom {
    display: none;
}

.premium-site .hero-badge {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #4338ca;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    animation: none;
}

.premium-site .hero-badge-kvkk {
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    animation: kvkk-badge-pulse 3s ease-in-out infinite;
}
.premium-site .hero-badge-kvkk::before {
    content: none;
}
.premium-site .hero-badge-kvkk svg {
    flex-shrink: 0;
}
@keyframes kvkk-badge-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1); }
    50% { box-shadow: 0 4px 26px rgba(16, 185, 129, 0.22); }
}

.premium-site .sector-badge {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--text-muted);
}

.premium-site .sector-badge.active {
    background: linear-gradient(180deg, #05091c, #262cc0);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(38, 44, 192, 0.3);
}

.premium-site .hero-badges-row {
    margin-bottom: 44px;
}

.premium-site .sector-badges {
    margin-bottom: 14px;
}

.premium-site .hero-title {
    margin-bottom: 32px;
}

.premium-site .hero-cta {
    margin-bottom: 28px;
}

.premium-site .hero-how {
    margin-bottom: 20px;
}

.premium-site .hero-sub {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 520px;
    animation: none;
}

.premium-site .hero-how-steps {
    color: var(--text-muted);
}

.premium-site .hero-how-steps strong {
    color: var(--primary);
}

.premium-site .hero-how-steps li::before {
    background: var(--premium-accent);
    box-shadow: 0 0 10px var(--premium-glow);
}

.premium-site .hero-cta {
    align-items: center;
    gap: 12px;
}

.premium-site .hero-cta-primary,
.premium-site .hero-cta-secondary.hero-cta-listen {
    min-height: 48px;
}

.premium-site .hero-cta-secondary.hero-cta-listen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 18px 6px 6px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 12px 34px rgba(99, 102, 241, 0.18), 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s var(--premium-ease), box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.premium-site .hero-cta-listen__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #0f172a;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
    transition: transform 0.25s var(--premium-ease), box-shadow 0.25s ease;
}

.premium-site .hero-cta-listen__play svg {
    margin-left: 2px;
}

.premium-site .hero-cta-listen__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: listen-live-pulse 2.2s ease-in-out infinite;
}

.premium-site .hero-cta-listen__label {
    letter-spacing: -0.01em;
}

@keyframes listen-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    55% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
}

.premium-site .hero-cta-secondary.hero-cta-listen:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    color: var(--primary);
    box-shadow: 0 18px 42px rgba(99, 102, 241, 0.24), 0 6px 16px rgba(15, 23, 42, 0.14);
}

.premium-site .hero-cta-secondary.hero-cta-listen:hover .hero-cta-listen__play {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.55);
}

/* Stats — glass chips */
.premium-site .hero-stats {
    gap: 10px;
    flex-wrap: nowrap;
    animation: none;
}

.premium-site .stat {
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-width: 0;
    flex: 1 1 0;
}

.premium-site .stat-num {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.premium-site .stat-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
}

.premium-site .stat-sep { display: none; }

/* Phone visual — live call animation */
.premium-site .phone-stage {
    position: relative;
    padding: 56px 40px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    perspective: 900px;
}

.premium-site .phone-stage::before,
.premium-site .phone-stage::after {
    display: none;
}

.premium-site .phone-mockup {
    animation: none;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 0 2.5px rgba(120, 117, 108, 0.5),
        inset 0 0 1.5px 1px rgba(255, 255, 255, 0.6),
        0 30px 60px -20px rgba(15, 23, 42, 0.3),
        0 12px 24px -8px rgba(15, 23, 42, 0.18);
}

.premium-site .phone-screen {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

.premium-site .call-status {
    color: #4ade80 !important;
    animation: call-status-blink 2s ease-in-out infinite;
}

@keyframes call-status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.premium-site .call-timer {
    color: #e8e2d8 !important;
}

.premium-site .caller-avatar-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-site .call-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.45);
    animation: call-wave-expand 2.4s ease-out infinite;
    pointer-events: none;
}

.premium-site .call-wave--2 { animation-delay: 0.8s; }
.premium-site .call-wave--3 { animation-delay: 1.6s; }

@keyframes call-wave-expand {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.65); opacity: 0; }
}

.premium-site .call-voice-bars {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-site .call-voice-bars.is-active { opacity: 1; }

.premium-site .call-voice-bars span {
    display: block;
    width: 3px;
    height: 6px;
    border-radius: 2px;
    background: #6366f1;
    animation: voice-bar 0.9s ease-in-out infinite;
}

.premium-site .call-voice-bars span:nth-child(1) { animation-delay: 0s; }
.premium-site .call-voice-bars span:nth-child(2) { animation-delay: 0.1s; }
.premium-site .call-voice-bars span:nth-child(3) { animation-delay: 0.2s; }
.premium-site .call-voice-bars span:nth-child(4) { animation-delay: 0.15s; }
.premium-site .call-voice-bars span:nth-child(5) { animation-delay: 0.05s; }

@keyframes voice-bar {
    0%, 100% { height: 6px; opacity: 0.5; }
    50% { height: 16px; opacity: 1; }
}

.premium-site .caller-avatar {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.35);
    animation: avatar-pulse 2s ease-in-out infinite;
}

@keyframes avatar-pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.55); }
}

.premium-site .call-transcript .message.ai {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%) !important;
    color: #fff !important;
    transform: translateX(-12px);
    opacity: 0;
}

.premium-site .call-transcript .message.customer {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(148, 163, 184, 0.25) !important;
    color: #e8e2d8 !important;
    transform: translateX(12px);
    opacity: 0;
}

.premium-site .call-transcript .message.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.premium-site .call-transcript {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-site .call-transcript .message {
    transition: transform 0.45s var(--premium-ease), opacity 0.45s ease;
}

.premium-site .typing-indicator {
    display: none;
    align-self: flex-start;
    padding: 10px 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(148, 163, 184, 0.2);
    gap: 4px;
    flex-direction: row;
    align-items: center;
    opacity: 0;
    transform: translateY(6px);
}

.premium-site .typing-indicator.is-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.premium-site .typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a5b4fc;
    animation: typing-bounce 1.2s ease-in-out infinite;
}

.premium-site .typing-dot:nth-child(2) { animation-delay: 0.15s; }
.premium-site .typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.premium-site .control-btn.end {
    animation: end-btn-pulse 2s ease-in-out infinite;
}

@keyframes end-btn-pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(239, 68, 68, 0.55); }
}

.premium-site .integration-logo-item {
    opacity: 1;
    animation: logo-float 3s ease-in-out infinite;
}

.premium-site .integration-logo-item:nth-child(2) { animation-delay: 0s; }
.premium-site .integration-logo-item:nth-child(3) { animation-delay: 0.4s; }
.premium-site .integration-logo-item:nth-child(4) { animation-delay: 0.8s; }
.premium-site .integration-logo-item:nth-child(5) { animation-delay: 1.2s; }
.premium-site .integration-logo-item:nth-child(6) { animation-delay: 1.6s; }

@keyframes logo-float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
}

.premium-site .connection-label {
    color: #4338ca;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
}

.premium-site .logo-container {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* ── Sections — alternating premium surfaces ── */
.premium-site .dashboard-section {
    padding: 120px 0;
    background: #ffffff;
}

.premium-site .dashboard-frame {
    background: transparent;
    border: none;
    box-shadow: none;
    transform-style: preserve-3d;
    will-change: transform;
}

.premium-site .sectors {
    padding: 120px 0;
    background: #fff;
}

.premium-site .sector-compat-card {
    border-radius: var(--premium-radius-xl);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
    transition: transform 0.5s var(--premium-ease), box-shadow 0.5s var(--premium-ease), border-color 0.35s ease;
    overflow: hidden;
}

.premium-site .sector-compat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(99, 102, 241, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.premium-site .sector-compat-card:hover::after,
.premium-site .sector-compat-card.active::after {
    opacity: 1;
}

.premium-site .sector-compat-card:hover,
.premium-site .sector-compat-card.active {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 24px 60px -20px rgba(79, 70, 229, 0.2);
}

.premium-site .sector-benefit-panel {
    border-radius: var(--premium-radius-xl);
    padding: 36px 32px;
    background: #fff;
    border: 1.5px solid rgba(38, 44, 192, 0.35);
    color: var(--text);
    box-shadow: 0 8px 40px -16px rgba(15, 23, 42, 0.1);
    transition: transform 0.5s var(--premium-ease), box-shadow 0.5s var(--premium-ease), border-color 0.5s var(--premium-ease);
}

.premium-site .sector-benefit-panel:hover {
    border-color: rgba(38, 44, 192, 0.5);
    box-shadow: 0 32px 64px -24px rgba(79, 70, 229, 0.15);
}

.premium-site .sector-benefit-icon {
    background: linear-gradient(180deg, #05091c, #262cc0);
    color: #fff;
}

.premium-site .sector-benefit-title {
    color: var(--text);
}

.premium-site .sector-benefit-subtitle {
    color: var(--text-muted) !important;
}

.premium-site .sector-benefit-list li {
    color: var(--text-muted);
}

.premium-site .comparison {
    padding: 120px 0;
    background: #ffffff;
}

.premium-site .comparison-card {
    border-radius: var(--radius);
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    transition: border-color 0.3s var(--premium-ease);
}

.premium-site .comparison-card:hover {
    border-color: rgba(15, 23, 42, 0.16);
}

.premium-site .comparison-value {
    font-family: var(--font);
    font-size: 36px;
    font-weight: 800;
}

.premium-site .comparison-value--up,
.premium-site .comparison-value--zero {
    background: linear-gradient(180deg, #05091c, #262cc0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.premium-site .comparison-table-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.premium-site .comparison-table thead th {
    background: #0f172a;
    color: #faf7f2;
}

.premium-site .comparison-good {
    background: linear-gradient(180deg, #05091c, #262cc0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
}

.premium-site .comparison-bad {
    color: var(--text-muted);
    font-weight: 500;
}

.premium-site .comparison .section-title .gradient-text,
.premium-site .dashboard-section .section-title .gradient-text {
    background: linear-gradient(180deg, #05091c, #262cc0);
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: none;
    filter: none;
}

.premium-site .how-it-works {
    padding: 120px 0;
    background: #fff;
}

.premium-site .steps.steps-vertical {
    position: relative;
    gap: 28px;
}

.premium-site .step.step-row {
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    padding: 24px 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.45s var(--premium-ease);
    align-items: center;
}

.premium-site .steps.steps-vertical .step.step-row:last-child {
    border-bottom: none;
}

.premium-site .step.step-row:hover {
    transform: translateX(6px);
}

.premium-site .step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font);
    line-height: 1;
    color: #0f172a;
    -webkit-text-fill-color: #0f172a;
    background: #ffffff;
    background-clip: border-box;
    border: 2px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    position: relative;
    align-self: center;
}

.premium-site .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.35);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.premium-site .step.step-row:hover .step-number::after {
    opacity: 1;
}

.premium-site .step-content h3 {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.premium-site .step-icon {
    font-size: 2.25rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.premium-site .features {
    padding: 120px 0;
    background: #ffffff;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.premium-site .features .section-badge {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
    color: #4338ca;
}

.premium-site .features .section-title {
    color: var(--primary);
}

.premium-site .features .section-desc {
    color: var(--text-muted);
}

.premium-site .feature-card {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s var(--premium-ease);
}

.premium-site .feature-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: none;
}

.premium-site .feature-card h3 {
    color: var(--primary);
    font-family: var(--font);
    font-size: 1.25rem;
}

.premium-site .features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(99, 102, 241, 0.05), transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(217, 70, 239, 0.04), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.premium-site .features-divider {
    display: none;
}

.premium-site .features .container {
    position: relative;
    z-index: 1;
}

.premium-site .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(180deg, #05091c, #262cc0);
    border: none;
    color: #fff;
    will-change: transform;
}

.premium-site .feature-card:hover .feature-icon {
    transform: scale(1.08) translateY(-2px);
    transition: transform 0.25s var(--premium-ease);
}

.premium-site .comparison-table tbody tr {
    transition: transform 0.35s var(--premium-ease), opacity 0.35s ease;
}

.premium-site .footer-grid > * {
    will-change: transform, opacity;
}

.premium-site .feature-card p {
    color: #94a3b8;
}

.premium-site .pricing {
    padding: 120px 0;
    background: #ffffff;
}

.premium-site .pricing-card {
    border-radius: var(--premium-radius-xl);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 40px -16px rgba(15, 23, 42, 0.1);
    transition: transform 0.5s var(--premium-ease), box-shadow 0.5s var(--premium-ease);
    position: relative;
    overflow: hidden;
}

.premium-site .pricing-card--popular {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 24px 80px -24px rgba(99, 102, 241, 0.25);
}

.premium-site .pricing-card--popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #d8b4fe, #6366f1);
    background-size: 300% 300%;
    animation: premium-gradient-flow 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-site .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 80px -24px rgba(15, 23, 42, 0.18);
}

.premium-site .calc-section {
    padding: 40px 0 100px;
    background: #ffffff;
}

.premium-site .calc-section .section-title {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.28em;
    white-space: nowrap;
}

.premium-site .calc-section .section-title .hero-line {
    display: inline-block;
}

@media (max-width: 600px) {
    .premium-site .calc-section .section-title {
        white-space: normal;
        flex-wrap: wrap;
    }
    .premium-site .calc-section .section-title .hero-line {
        display: block;
    }
}

.premium-site .calc-loss-text {
    background: linear-gradient(180deg, #05091c, #262cc0) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: none;
    filter: none;
}

.premium-site .calc-card {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--premium-radius-xl);
    padding: 2rem;
    margin: 36px auto 16px;
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.06);
}

.premium-site .calc-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.premium-site .calc-sector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.premium-site .calc-sector-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 100px;
    padding: 8px 20px 8px 8px;
    cursor: pointer;
    text-align: left;
    transition: all .2s;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    outline: none;
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.06);
}
.premium-site .calc-sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--primary);
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.premium-site .calc-sector-btn:hover {
    border-color: rgba(38, 44, 192, 0.25);
    color: var(--primary);
}
.premium-site .calc-sector-btn.active {
    background: linear-gradient(135deg, rgba(38, 44, 192, 0.1), rgba(38, 44, 192, 0.04));
    border-color: rgba(38, 44, 192, 0.35);
    color: #262cc0;
}
.premium-site .calc-sector-btn.active .calc-sector-icon {
    background: linear-gradient(180deg, #05091c, #262cc0);
    color: #fff;
}

.premium-site .calc-slider-block {
    margin-bottom: 22px;
}
.premium-site .calc-slider-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.premium-site .calc-slider-name {
    font-size: 14px;
    color: var(--text-muted);
}
.premium-site .calc-slider-value {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    min-width: 80px;
    text-align: right;
}
.premium-site .calc-slider-block input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    border: none;
}
.premium-site .calc-slider-block input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #262cc0;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #262cc0, 0 2px 8px rgba(38, 44, 192, 0.35);
}
.premium-site .calc-slider-block input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #262cc0;
    cursor: pointer;
    border: 3px solid #fff;
}

.premium-site .calc-result-hero {
    width: 100%;
    background: rgba(38, 44, 192, 0.04);
    border: 1px solid rgba(38, 44, 192, 0.16);
    border-radius: var(--premium-radius-xl);
    padding: 1.75rem 2rem;
    text-align: center;
    margin: 0 auto 14px;
}
.premium-site .calc-result-label {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.premium-site .calc-result-amount {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 600;
    color: #262cc0;
    line-height: 1;
    margin-bottom: 8px;
}
.premium-site .calc-result-period {
    font-size: 13px;
    color: var(--text-dim);
}

.premium-site .calc-breakdown-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 auto 14px;
}
.premium-site .calc-b-card {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
}
.premium-site .calc-b-num {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.premium-site .calc-b-label {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.4;
}

.premium-site .calc-insight-box {
    width: 100%;
    background: rgba(38, 44, 192, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-left: 3px solid #262cc0;
    border-radius: 0 12px 12px 0;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 auto 2rem;
}
.premium-site .calc-insight-box strong {
    color: #262cc0;
    font-weight: 600;
}

.premium-site .calc-cta-block {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(38, 44, 192, 0.06) 0%, rgba(38, 44, 192, 0.015) 100%);
    border: 1px solid rgba(38, 44, 192, 0.15);
    border-radius: var(--premium-radius-xl);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.premium-site .calc-cta-text { flex: 1; min-width: 200px; }
.premium-site .calc-cta-title {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.premium-site .calc-cta-sub {
    font-size: 13px;
    color: var(--text-muted);
}
.premium-site .calc-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .premium-site .calc-breakdown-grid { grid-template-columns: 1fr 1fr; }
    .premium-site .calc-breakdown-grid .calc-b-card:last-child { grid-column: 1 / -1; }
    .premium-site .calc-cta-block { flex-direction: column; text-align: center; }
    .premium-site .calc-card { padding: 1.25rem; }
}

.premium-site .pricing-header .section-badge {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.premium-site .pricing-badge {
    background: none;
    color: #4338ca;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.premium-site .footer {
    background: linear-gradient(180deg, #05091c, #262cc0);
    color: #c7d2fe;
    border-top-color: transparent;
}

.premium-site .footer-tagline,
.premium-site .footer-contact-lead {
    color: #c7d2fe;
}

.premium-site .footer-col-title {
    color: #fff;
}

.premium-site .footer-copy {
    color: rgba(199, 210, 254, 0.7);
}

.premium-site .footer-links a {
    color: #e0e7ff;
}

.premium-site .footer-links a:hover {
    color: #fff;
}

.premium-site .footer-contact-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.premium-site .footer-contact-card:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
}

.premium-site .footer-contact-value {
    color: #fff;
}

.premium-site .footer-contact-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.premium-site .footer-logo .logo-img {
    filter: brightness(0) invert(1);
}

.premium-site .footer-bottom {
    border-top-color: rgba(15, 23, 42, 0.07);
}

.premium-site.premium-ready section:not(.hero) .section-badge,
.premium-site.premium-ready section:not(.hero) .section-title,
.premium-site.premium-ready section:not(.hero) .section-desc {
    opacity: 0;
}

.premium-site.premium-ready section:not(.hero) .section-title.title--split .hero-line-inner {
    opacity: 0;
}

.premium-site.premium-ready [data-premium-reveal] {
    opacity: 0;
    transform: translateY(48px);
    filter: blur(8px);
}

.premium-site.premium-ready [data-premium-reveal="scale"] {
    transform: translateY(40px) scale(0.94);
}

/* Sektör fayda paneli her zaman görünür kalmalı */
.premium-site .sector-benefit-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Disable CSS hero animations when premium JS runs */
.premium-site.premium-ready .hero-badge,
.premium-site.premium-ready .sector-badges,
.premium-site.premium-ready .hero-title,
.premium-site.premium-ready .hero-sub,
.premium-site.premium-ready .hero-cta,
.premium-site.premium-ready .hero-how,
.premium-site.premium-ready .hero-stats {
    animation: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .premium-site .navbar {
        top: 8px;
        width: calc(100% - 20px);
        border-radius: 20px;
        padding: 12px 16px;
    }

    .premium-site .navbar.open {
        border-radius: 20px;
    }

    .premium-site .hero-title {
        font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    }

    .premium-site .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .premium-site .hero-cta {
        justify-content: center;
    }

    .premium-site .hero-cta-secondary.hero-cta-listen {
        font-size: 16px;
        padding-right: 22px;
    }

    .cursor-glow { display: none; }

    .premium-site .step.step-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
        text-align: left;
    }

    .premium-site .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
    }

    .premium-site .step-visual {
        justify-content: flex-start;
    }

    .premium-site .step-icon {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .premium-site.premium-ready section:not(.hero) .section-badge,
    .premium-site.premium-ready section:not(.hero) .section-title,
    .premium-site.premium-ready section:not(.hero) .section-desc,
    .premium-site.premium-ready section:not(.hero) .section-title.title--split .hero-line-inner,
    .premium-site [data-premium-reveal],
    .premium-site [data-premium-reveal="scale"] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .premium-site .hero-aurora,
    .premium-site .aurora-canvas,
    .premium-site .phone-stage::before,
    .premium-site .phone-stage::after,
    .premium-site .call-wave {
        animation: none !important;
        display: none;
    }

    .premium-site .call-transcript .message {
        opacity: 1 !important;
        transform: none !important;
    }

    .premium-site .gradient-text,
    .premium-site .hero-title .gradient-text,
    .premium-site .pricing-card--popular::before {
        animation: none;
    }

    .premium-site .hero-cta-listen__dot {
        animation: none;
    }
}

html.reduce-motion .premium-site [data-premium-reveal],
html.reduce-motion .premium-site [data-premium-reveal="scale"] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* ================================================================
   Redesign layer — independent visual system, same content/IA
   ================================================================ */

/* ── References: static trust logo row ── */
.premium-site .references {
    padding: 32px 0 56px;
    background: #ffffff;
}

/* ── Features: even grid, full-width columns ── */
.premium-site .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.premium-site .features-grid .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .premium-site .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Sector selector: pill tabs instead of boxy grid ── */
.premium-site .sector-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.premium-site .sector-compat-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 14px;
    border-radius: 100px;
}
.premium-site .sector-compat-card .sector-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    flex-shrink: 0;
}
.premium-site .sector-compat-card .sector-card-icon svg {
    width: 18px;
    height: 18px;
}
.premium-site .sector-compat-card h3 {
    font-size: 15px;
    margin-bottom: 0;
    white-space: nowrap;
}
.premium-site .sector-compat-card .sector-scenario {
    display: none;
}
.premium-site .sector-compat-card::before {
    display: none;
}
.premium-site .sector-compat-card.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(38, 44, 192, 0.35);
}
.premium-site .sector-compat-card.active .sector-card-icon {
    background: linear-gradient(180deg, #05091c, #262cc0);
    color: #fff;
}

/* ── Footer: giant faded wordmark ── */
.premium-site .footer {
    position: relative;
}
.premium-site .footer .container {
    position: relative;
    z-index: 1;
}
