/* Konektizen App Page Styles - Professional Light Theme */

.konektizen-page {
    background-color: #ffffff;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
}

.konektizen-page nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hero Section styling with soft background gradient */
.konektizen-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at center, rgba(22, 163, 74, 0.06) 0%, #ffffff 75%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f3f4f6;
}

.konektizen-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(#f3f4f6 1px, transparent 1px),
                      linear-gradient(90deg, #f3f4f6 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.7;
}

.konektizen-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.konektizen-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #14532d 0%, #16a34a 50%, #84cc16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.konektizen-hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.konektizen-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.konektizen-btn-primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.konektizen-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    filter: brightness(1.1);
}

.konektizen-btn-secondary {
    background: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
    margin-left: 15px;
}

.konektizen-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
}

/* Feature Showcase Layout */
.konektizen-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

.konektizen-showcase-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.konektizen-showcase-split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.konektizen-showcase-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #14532d;
    letter-spacing: -0.02em;
}

.konektizen-showcase-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.konektizen-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.konektizen-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.5;
}

.konektizen-list li svg {
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Premium Phone Frame Simulation */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.phone-container {
    width: 320px;
    height: 650px;
    background: #000000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(22, 163, 74, 0.15),
                inset 0 0 3px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    border: 4px solid #334155;
    overflow: hidden;
}

/* Speaker & Camera Notch */
.phone-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 28px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
    scrollbar-width: none; /* Hide scrollbar for clean app experience */
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}

/* Highlight badge inside mockups */
.mockup-badge {
    position: absolute;
    bottom: 25px;
    background: rgba(22, 163, 74, 0.95);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
    animation: floatingEffect 3s ease-in-out infinite;
}

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

/* Capabilities/Announcements grid styles */
.konektizen-capabilities {
    padding: 100px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.konektizen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.konektizen-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.konektizen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.konektizen-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #14532d;
}

.konektizen-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .konektizen-showcase-split,
    .konektizen-showcase-split.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .konektizen-showcase-split .phone-mockup-wrapper {
        order: -1;
    }
    .phone-container {
        width: 290px;
        height: 580px;
    }
    .konektizen-showcase-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .konektizen-hero {
        padding: 120px 0 60px;
    }
    .konektizen-hero-content h1 {
        font-size: 2.5rem;
    }
    .konektizen-hero-content p {
        font-size: 1.1rem;
    }
    .konektizen-btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }
    .konektizen-btn-secondary {
        margin-left: 0 !important;
    }
    .konektizen-showcase {
        padding: 60px 0;
    }
    .konektizen-showcase-text h2 {
        font-size: 2rem;
    }
    .konektizen-showcase-text p, .konektizen-list li {
        font-size: 1rem;
    }
}

/* --- Konektizen Page Entrance Animation --- */
@keyframes ktFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ktScaleReveal {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.konektizen-page nav {
    opacity: 0;
    animation: ktFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.st-title {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    animation: ktScaleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.st-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: ktFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.st-delay-1 { animation-delay: 0.15s; }
.st-delay-2 { animation-delay: 0.3s; }
.st-delay-3 { animation-delay: 0.45s; }
.st-delay-4 { animation-delay: 0.6s; }

