@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

:root {
    --c-text-primary: #282a32;
    --c-text-secondary: #686b87;
    --c-text-action: #404089;
    --c-accent-primary: #434ce8;
    --c-border-primary: #eff1f6;
    --c-background-primary: #ffffff;
    --c-background-secondary: #fdfcff;
    --c-background-tertiary: #ecf3fe;
    --c-background-quaternary: #e9ecf4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--c-background-secondary);
    color: var(--c-text-primary);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

.responsive-wrapper {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* === Preloader Wrapper === */

#preloader {
    position: fixed;
    inset: 0;
    background: #f3f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top: 6px solid var(--c-accent-primary);
    border-bottom: 6px solid #868fff;
    animation: spin 1.6s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ecedfb 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(135, 144, 255, 0.3);
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Be Vietnam Pro', sans-serif;
    display: flex;
    gap: 0.2rem;
}

.loader-text span {
    color: var(--c-text-primary);
}

.loader-text em {
    font-style: normal;
    opacity: 0.7;
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* === Header === */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--c-border-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--c-text-primary);
}

.logo-main {
    display: inline-block;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.logo-main em {
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.beta-label {
    background: #e0e7ff;
    color: #3b3f93;
    font-size: 0.65rem;
    margin-left: 0.2rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px #c7d2fe;
    line-height: 1;
    transform: translateY(2px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 0.2rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    user-select: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    color: var(--c-text-action);
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--c-accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.button {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.button.primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background-color: transparent;
    border: 1px solid #6366f1;
    background-color: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button.primary:hover {
    background-color: #3038c0;
}

.button.primary i {
    font-size: 1.1rem;
    display: inline-block;
    line-height: 1;
    transform: translateY(1px);
}

.button.ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background-color: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button.ghost:hover {
    background-color: #6366f1;
    color: #ffffff;
}

.button.ghost i {
    font-size: 1.1rem;
    display: inline-block;
    line-height: 1;
    transform: translateY(1px);
}

.menu-toggle {
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--c-text-action);
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #ffffffee;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 998;
    border-bottom: 1px solid var(--c-border-primary);
    animation: fadeInSlide 0.25s ease forwards;
}

.profile-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-dropdown {
    position: relative;
    z-index: 100;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.user-toggle:hover {
    background: var(--c-background-tertiary);
}

.user-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #3b82f6;
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 0 0 2px #fff;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info span {
    display: block;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text-primary);
}

.user-email {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
}

.dropdown-icon {
    font-size: 1rem;
    color: var(--c-text-action);
    transition: transform 0.2s;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--c-text-primary);
    text-decoration: none;
}

.label-with-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.badge-inline {
    background-color: #3b82f6;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 9999px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    white-space: nowrap;
}

.user-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--c-background-primary);
    border: 1px solid var(--c-border-primary);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: var(--c-text-action);
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--c-background-tertiary);
    color: var(--c-accent-primary);
}

.dropdown-menu hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--c-border-primary);
}

.user-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .profile-mobile-wrapper {
        margin-left: auto;
    }

    .user-info {
        display: none;
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: flex;
}

.desktop-only {
    display: flex;
}

@media (max-width: 900px) {
    .mobile-menu a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--c-text-action);
        transition: color 0.2s;
    }

    .mobile-menu a:hover {
        color: var(--c-accent-primary);
    }

    .desktop-only {
        display: none;
    }

    .mobile-menu .button {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.75rem;
        padding: 0.65rem 1rem;
    }

    .mobile-menu .button.ghost {
        border: 2px solid var(--c-accent-primary);
        background: transparent;
        color: var(--c-accent-primary);
    }

    .mobile-menu .button.primary {
        background-color: var(--c-accent-primary);
        color: #fff;
    }

    .mobile-menu hr {
        margin: 1rem 0;
        border: none;
        border-top: 1px solid var(--c-border-primary);
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle i {
        font-size: 1.5rem;
        transition: transform 0.2s;
    }

    .menu-toggle .close-icon {
        display: none;
    }

    .menu-toggle.open .default-icon {
        display: none;
    }

    .menu-toggle.open .close-icon {
        display: inline;
    }
}

/* === Hero === */

.hero-section {
    position: relative;
    padding: 6rem 1rem;
    background: radial-gradient(ellipse at top left, var(--c-background-secondary), var(--c-background-primary));
    overflow: hidden;
    border-radius: 16px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--c-text-secondary);
    margin: 1rem 0 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    user-select: none;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* === About === */

.about-section {
    position: relative;
    padding: 6rem 1rem;
    background-color: var(--c-background-primary);
    overflow: hidden;
    border-radius: 16px;
    margin-top: 4rem;
}

.about-background .glow-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--c-accent-primary);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.glow-circle.top-left {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.glow-circle.bottom-right {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin-inline: auto;
    text-align: center;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--c-text-action);
}

.about-intro {
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 3rem;
    color: var(--c-text-secondary);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.stat-card h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--c-accent-primary);
}

.stat-card p {
    color: var(--c-text-secondary);
    margin-top: 0.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-box {
    background-color: var(--c-background-secondary);
    border: 1px solid var(--c-border-primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

.value-box:hover {
    transform: translateY(-6px);
}

.value-box i {
    font-size: 2rem;
    color: var(--c-accent-primary);
    margin-bottom: 0.75rem;
}

.value-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-box p {
    color: var(--c-text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .stat-card h3 {
        font-size: 1.75rem;
    }

    .about-content .section-title {
        font-size: 2rem;
    }
}

/* === Features === */

.features-daylight {
    padding: 6rem 2rem;
    margin-top: 6rem;
    background: linear-gradient(120deg, #f9fafc, #f1f5f9);
    text-align: center;
    color: #1e293b;
}

.features-headline h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.features-headline p {
    font-size: 1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(100, 116, 139, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* === Blog Preview === */

.blog-cyber-section {
    position: relative;
    padding: 6rem 1rem;
    background: #fff;
    color: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.blog-cyber-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blog-cyber-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
}

.blog-cyber-header h2 span {
    background: linear-gradient(90deg, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-cyber-header p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 1rem;
}

.blog-cyber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 0.75rem;
}

.blog-cyber-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(100, 116, 139, 0.08);
    transition: transform 0.35s ease, box-shadow 0.3s ease;
}

.blog-cyber-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.blog-cyber-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blog-cyber-content {
    padding: 1.2rem;
}

.blog-cyber-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.blog-cyber-content p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.75rem;
}

.blog-cyber-content a {
    font-weight: 600;
    color: #6366f1;
    position: relative;
    text-decoration: none;
}

.blog-cyber-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #6366f1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-cyber-content a:hover::after {
    transform: scaleX(1);
}

.blog-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.blog-cyber-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-glass {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: bold;
    border-radius: 999px;
    background: #ffffffcc;
    color: #4338ca;
    border: 1px solid #c7d2fe;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.2);
}

.btn-glass i {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
    transform: translateY(2px);
    margin-right: 0.5rem;
}

/* === CTA === */

.cta-glow {
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #eceeff, #f6f8ff);
    border-radius: 20px;
    text-align: center;
}

.cta-glow-inner {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
}

.cta-glow h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--c-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-glow h2 span {
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-glow p {
    font-size: 1.15rem;
    color: var(--c-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--c-accent-primary);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(67, 76, 232, 0.2);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1;
    transform: translateY(5.5px);
    margin-right: 0.3rem;
}

.cta-float {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--c-accent-primary);
    opacity: 0.08;
    filter: blur(100px);
    animation: float 12s infinite ease-in-out;
}

.cta-float.float-1 {
    top: -100px;
    left: -80px;
    animation-delay: 0s;
}

.cta-float.float-2 {
    bottom: -80px;
    right: -60px;
    animation-delay: 3s;
}

.cta-float.float-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@media (max-width: 900px) {
    .cta-glow h2 {
        font-size: 2rem;
    }

    .cta-glow p {
        font-size: 1rem;
    }
}

/* === Services === */

.services-wrapper {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fff;
    border: 1px solid var(--c-border-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
}

.search-input-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input-wrapper input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    background: #f9fafb;
}

.search-input-wrapper button {
    background: var(--c-accent-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input-wrapper button:hover {
    background: #3038c0;
}

.select-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-block label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-text-primary);
    margin-bottom: 0.3rem;
    display: block;
}

.filter-block select {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%236b7280' viewBox='0 0 20 20'%3E%3Cpath d='M7 7l3-3 3 3H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}

.service-item {
    background: linear-gradient(to right, #ffffff, #f1f5ff);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 18px 48px rgba(99, 102, 241, 0.12);
}

.item-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.item-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #475569;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.item-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.item-content {
    flex: 1 1 300px;
}

.item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.meta-pill {
    background: #eef2ff;
    color: #475569;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.item-rating {
    font-size: 1rem;
    color: #fbbf24;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.item-rating .outline {
    opacity: 0.3;
}

.item-rating small {
    font-size: 0.85rem;
    margin-left: 0.4rem;
    color: #6b7280;
}

.item-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

.item-action {
    flex-shrink: 0;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    max-width: 220px;
    padding: 0.5rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-action i {
    font-size: 1.2rem;
}

.btn-view {
    background-color: #f1f5f9;
    color: #1e3a8a;
    border: 1px solid #6366f1;
}

.btn-view:hover {
    background-color: #e0e7ff;
}

.btn-reklama {
    background-color: #6366f1;
    color: #ffffff;
    border: 1px solid #6366f1;
}

.btn-reklama:hover {
    background-color: #3038c0;
    border: 1px solid #3038c0;
}

.item-action.vertical-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.desktop-only {
    display: block;
}

@media (max-width: 900px) {
    .item-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .desktop-only {
        display: none;
    }

    .item-action {
        margin-top: -9rem;
    }
}

.pagination {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--c-border-primary);
    background: var(--c-background-primary);
    color: var(--c-text-action);
    font-weight: 600;
    min-width: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
    background: var(--c-accent-primary);
    color: #fff;
    border-color: var(--c-accent-primary);
}

.pagination span {
    color: #9ca3af;
    padding: 0 0.4rem;
}

@media (max-width: 900px) {
    .select-group {
        flex-direction: column;
    }

    .search-input-wrapper {
        flex-direction: column;
    }
}

/* === Not Found === */

.not-found {
    position: relative;
    min-height: 380px;
    padding: 4rem 2rem;
    background: linear-gradient(to right, #ffffff, #f1f5ff);
    border: 1px dashed #d1d5db;
    border-radius: 20px;
    box-shadow: inset 0 0 80px rgba(99, 102, 241, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.not-found-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 1.4rem;
    z-index: 2;
}

.not-found-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.not-found-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-accent-primary);
    letter-spacing: 0.3px;
    z-index: 2;
}

.not-found-description {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    margin-top: 0.5rem;
    max-width: 400px;
    z-index: 2;
}

.not-found-decor {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* === Service Read === */

.service-header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.service-image .item-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
    color: #475569;
    font-size: 3.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.item-meta {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}

.meta-pill {
    background: #eef2ff;
    color: #475569;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .85rem;
}

.item-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #facc15;
    margin-bottom: .75rem;
}

.item-rating i {
    font-size: 1.2rem;
}

.item-rating small {
    font-size: .85rem;
    color: var(--c-text-secondary);
    margin-left: .5rem;
}

.item-price {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: background .3s, transform .3s;
}

.btn-reklama {
    background: var(--c-accent-primary);
    color: #fff;
    border: 1px solid var(--c-accent-primary);
}

.btn-reklama:hover {
    background: #3038c0;
}

.btn-view {
    background: #f1f5f9;
    color: #1e3a8a;
    border: 1px solid #6366f1;
}

.btn-view:hover {
    background: #e0e7ff;
}

.pricing-plans {
    margin: 4rem 0;
    text-align: center;
}

.pricing-plans h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tarif-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform .3s, box-shadow .3s;
}

.tarif-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
}

.tarif-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-text-action);
    margin-bottom: .75rem;
}

.tarif-card p {
    font-size: .95rem;
    color: var(--c-text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tarif-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent-primary);
}

.agency-info {
    margin: 4rem 0;
}

.agency-info h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.agency-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.agency-card .item-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #e5e7eb;
    color: #475569;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.agency-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agency-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.agency-details .agency-email {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    margin: 0 0 1rem;
}

.agency-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-form {
    margin: 4rem 0;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.review-form h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.review-form label {
    display: block;
    margin: .75rem 0 .25rem;
    font-weight: 600;
    color: var(--c-text-primary);
}

.review-form select,
.review-form textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.review-form textarea {
    resize: vertical;
    max-height: 15rem;
    min-height: 5rem;
}

.review-form select {
    appearance: none;
}

.review-form button {
    margin-top: 1rem;
}

.reviews-list {
    margin: 4rem 0;
}

.reviews-list h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.review-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    color: #475569;
    background: #e5e7eb;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--c-accent-primary);
    text-decoration: none;
}

.comment-author:hover {
    text-decoration: underline;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

.comment-footer .btn-reply {
    background: #f1f5f9;
    color: #1e3a8a;
    border: 1px solid #cbd5e1;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.comment-footer .btn-reply:hover {
    background: #e0e7ff;
    color: var(--c-accent-primary);
    border-color: var(--c-accent-primary);
}

.comment-footer .btn-delete {
    background: #ffe6e6;
    color: #de3618;
    border: 1px solid #de3618;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.75rem;
}

.comment-footer .btn-delete:hover {
    background: #ffcccc;
    border-color: #c02b14;
}

.reply-card {
    position: relative;
    margin-left: 3rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
    border: 1px solid #e3e8f9;
    border-left: 6px solid var(--c-accent-primary);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(67, 76, 232, 0.06);
    display: flex;
    gap: 1rem;
    position: relative;
}

.reply-card::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: -1.1rem;
    width: 2px;
    height: calc(50% + 1.1rem);
    background: var(--c-accent-primary);
    opacity: 0.8;
}

.reply-card::after {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: var(--c-accent-primary);
    opacity: 0.8;
}

.reply-card-2 {
    position: relative;
    margin-left: 3rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
    border: 1px solid #e3e8f9;
    border-left: 6px solid var(--c-accent-primary);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(67, 76, 232, 0.06);
    display: flex;
    gap: 1rem;
    position: relative;
}

.reply-card-2::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: -5.5rem;
    width: 2px;
    height: calc(50% + 5.5rem);
    background: var(--c-accent-primary);
    opacity: 0.8;
}

.reply-card-2::after {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: var(--c-accent-primary);
    opacity: 0.8;
}

.reply-card .comment-avatar,
.reply-card-2 .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.reply-card .comment-body,
.reply-card-2 .comment-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reply-card .comment-author,
.reply-card-2 .comment-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-accent-primary);
    text-decoration: none;
}

.reply-card p,
.reply-card-2 p {
    font-size: 0.95rem;
    color: var(--c-text-primary);
    margin-bottom: 0.4rem;
}

.reply-card .comment-footer,
.reply-card-2 .comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
}

.reply-card .comment-footer .btn-delete,
.reply-card-2 .comment-footer .btn-delete {
    margin-left: 0rem;
}

@media (max-width: 900px) {
    .comment-footer,
    .reply-card .comment-footer,
    .reply-card-2 .comment-footer {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .comment-footer button,
    .reply-card .comment-footer button,
    .reply-card-2 .comment-footer button {
        order: 1;
    }

    .comment-footer>span.comment-date {
        order: 2;
        align-self: flex-end;
        text-align: right;
        margin-top: 0.5rem;
        width: auto;
    }

    .comment-footer .btn-reply,
    .comment-footer .btn-delete {
        width: 9rem;
        margin-bottom: 0.4rem;
    }

    .comment-footer .btn-reply {
        margin-left: 0.75rem;
    }

    .reply-card .comment-footer .btn-delete,
    .reply-card-2 .comment-footer .btn-delete {
        width: 9rem;
        margin-bottom: 0.4rem;
    }
}

/* === Footer === */

.site-footer {
    background: var(--c-background-primary);
    border-top: 1px solid var(--c-border-primary);
    margin-top: 0rem;
    padding: 4rem 1rem 2rem;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    user-select: none;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand span {
    background: linear-gradient(90deg, var(--c-accent-primary), #868fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: var(--c-text-secondary);
    font-size: 0.95rem;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
    color: var(--c-text-action);
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--c-accent-primary);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    border-top: 1px solid var(--c-border-primary);
    padding-top: 1.5rem;
}