/* =========================
   NAVBAR
   ========================= */
:root {
    --nav-h: 76px;
    --brand: #A8FF35;
    --nav-bg: rgba(0, 0, 0, 0.85);
    --nav-border: rgba(255, 255, 255, 0.08);
    --page-pad: clamp(20px, 4vw, 56px);
    --section-max: 1280px;
    --search-max: min(100%, var(--section-max));
    --radius-sharp: 8px;
    --radius-box: 10px;
}

@media (max-width: 900px) {
    :root { --nav-h: 68px; }
}

/* ========== GLOBAL ========== */

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    background-color: #000;
    color: white;
    overflow-x: hidden;
    max-width: 100%;

    /* FIX: navbar fixed olduğu için içerik asla üst üste binmez */
    padding-top: var(--nav-h);
}

::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none; /* Firefox */
    box-sizing: border-box;
}

/* ========== NAVBAR (full width: left → right) ========== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    border-bottom: 1px solid transparent;
    isolation: isolate;
    pointer-events: none;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.navbar--scrolled,
.navbar--open {
    background: var(--nav-bg);
    border-bottom-color: var(--nav-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    pointer-events: auto;
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.navbar__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.navbar__brand-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.navbar__brand-dot {
    color: var(--brand);
}

.navbar__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.navbar__link {
    padding: 8px 14px;
    border-radius: var(--radius-sharp);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.navbar__link--active {
    color: #000;
    background: var(--brand);
    font-weight: 700;
}

.navbar__link--active:hover {
    color: #000;
    background: #b8ff55;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-self: end;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-sharp);
    border: none;
    background: var(--brand);
    color: #000;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.navbar__cta:hover {
    background: #b8ff55;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 255, 53, 0.28);
}

.navbar__toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.navbar__toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
    transform: translateX(-50%);
}

.navbar__toggle span:nth-child(1) { top: 14px; }
.navbar__toggle span:nth-child(2) { top: 20px; }
.navbar__toggle span:nth-child(3) { top: 26px; }

.navbar__toggle--open span:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}

.navbar__toggle--open span:nth-child(2) { opacity: 0; }

.navbar__toggle--open span:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}

.navbar__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 0;
}

.navbar__backdrop--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar__mobile {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: min(320px, 88vw);
    height: calc(100vh - var(--nav-h));
    padding: 20px 18px 28px;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: none;
    visibility: hidden;
}

.navbar__mobile--open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.navbar__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.navbar__mobile-link {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.navbar__mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.navbar__mobile-link--active {
    background: rgba(168, 255, 53, 0.12);
    color: var(--brand);
    font-weight: 700;
}

.navbar__mobile-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: var(--brand);
    color: #000;
    font-size: 0.92rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 900px) {
    .navbar__menu,
    .navbar__cta {
        display: none;
    }

    .navbar__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar__logo {
        width: 36px;
        height: 36px;
    }

    .navbar__brand-text {
        font-size: 0.92rem;
    }
}

@media (max-width: 420px) {
    .navbar__brand-text {
        display: none;
    }
}

/* ========== HOME PAGE ========== */

.home-page {
    overflow-x: clip;
    width: 100%;
}

/* ---- Hero ---- */

.home-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px var(--page-pad) 72px;
    overflow: hidden;
    isolation: isolate;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, #000 25%, transparent 78%);
    animation: gridDrift 24s linear infinite;
}

@keyframes gridDrift {
    from { transform: translateY(0); }
    to { transform: translateY(56px); }
}

.home-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 9s ease-in-out infinite;
}

.home-hero__orb--1 {
    width: 380px;
    height: 380px;
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(168, 255, 53, 0.08);
    animation-delay: 0s;
}

.home-hero__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: 10%;
    background: rgba(168, 255, 53, 0.05);
    animation-delay: -3s;
}

.home-hero__orb--3 {
    width: 200px;
    height: 200px;
    top: 32%;
    right: 8%;
    background: rgba(120, 200, 255, 0.04);
    animation-delay: -5s;
}

.home-hero__particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(168, 255, 53, 0.55);
    box-shadow: 0 0 10px rgba(168, 255, 53, 0.35);
    animation: heroParticle 14s ease-in-out infinite;
}

.home-hero__particle--1 { top: 18%; left: 12%; animation-delay: 0s; }
.home-hero__particle--2 { top: 28%; right: 16%; animation-delay: -2s; width: 4px; height: 4px; }
.home-hero__particle--3 { top: 52%; left: 22%; animation-delay: -4s; opacity: 0.7; }
.home-hero__particle--4 { top: 62%; right: 24%; animation-delay: -6s; width: 6px; height: 6px; }
.home-hero__particle--5 { top: 38%; left: 48%; animation-delay: -8s; opacity: 0.5; }
.home-hero__particle--6 { top: 72%; left: 58%; animation-delay: -10s; width: 4px; height: 4px; }

@keyframes heroParticle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.45; }
    25% { transform: translate(12px, -18px) rotate(90deg); opacity: 0.9; }
    50% { transform: translate(-8px, -28px) rotate(180deg); opacity: 0.55; }
    75% { transform: translate(-14px, -10px) rotate(270deg); opacity: 0.8; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(18px, -22px) scale(1.04); }
    66% { transform: translate(-14px, 12px) scale(0.97); }
}

.home-hero__orb--1 {
    animation-name: orbFloatCenter;
}

@keyframes orbFloatCenter {
    0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
    33% { transform: translateX(-50%) translate(18px, -22px) scale(1.04); }
    66% { transform: translateX(-50%) translate(-14px, 12px) scale(0.97); }
}

.home-hero__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
}

.home-hero__shell > * {
    width: 100%;
}

.home-hero__head {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.3);
    background: rgba(168, 255, 53, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.home-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 12px var(--brand);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.home-hero__title {
    margin: 0 0 18px;
    width: 100%;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    text-wrap: balance;
}

.home-hero__title-accent {
    display: block;
    margin-top: 6px;
    background: linear-gradient(90deg, #A8FF35 0%, #d4ff7a 50%, #A8FF35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.home-hero__subtitle {
    margin: 0;
    width: 100%;
    max-width: 640px;
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
    text-wrap: balance;
}

.home-search {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-search--hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    align-self: stretch;
    align-items: stretch;
}

.home-search__field-shell {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 22px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color-scheme: dark;
}

.home-search__field-shell:focus-within,
.home-search__field-shell--loading {
    border-color: rgba(168, 255, 53, 0.45);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}

.home-search__field-shell::before {
    display: none;
}

.home-search__icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.home-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    padding: 12px 0;
    color-scheme: dark;
    -webkit-appearance: none;
    appearance: none;
}

.home-search__input:-webkit-autofill,
.home-search__input:-webkit-autofill:hover,
.home-search__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #080808 inset;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    transition: background-color 99999s ease-out 0s;
}

.home-search__input:focus,
.home-search__input:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}

.home-search__input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.home-search__btn {
    flex-shrink: 0;
    border: none;
    border-radius: var(--radius-sharp);
    padding: 14px 24px;
    background: linear-gradient(135deg, #b8ff55, #A8FF35);
    color: #000;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    min-width: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(168, 255, 53, 0.25);
}

.home-search__btn svg {
    width: 16px;
    height: 16px;
}

.home-search__btn:disabled {
    opacity: 0.8;
    cursor: wait;
}

.home-search__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-top-color: #000;
    border-radius: 50%;
    animation: homeSpin 0.7s linear infinite;
}

@keyframes homeSpin {
    to { transform: rotate(360deg); }
}

.home-search__validation {
    width: 100%;
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: #ff8f8f;
    text-align: center;
}

.home-search__suggestions {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-search__suggestions-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.home-search__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.home-search__chip {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-sharp);
    padding: 8px 16px;
    font-size: 0.8rem;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.home-search__chip::before {
    display: none;
}

.home-search__chip:hover {
    color: var(--brand);
    border-color: rgba(168, 255, 53, 0.35);
    box-shadow: 0 4px 16px rgba(168, 255, 53, 0.12);
}

.home-hero__bento {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    align-self: stretch;
}

.home-hero__bento-intro {
    grid-column: 1 / -1;
    padding: 0 2px 4px;
}

.home-hero__bento-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.28);
    background: rgba(168, 255, 53, 0.08);
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-hero__bento-title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}

.home-hero__bento-lead {
    margin: 0;
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
    padding: 22px 20px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.home-hero__stat:hover {
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.home-hero__stat strong {
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
}

.home-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.3;
    font-weight: 700;
}

.home-hero__stat-hint {
    margin: 6px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

.home-hero__highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.home-hero__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 1;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-hero__highlight:hover {
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.home-hero__highlight-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.18);
    background: rgba(168, 255, 53, 0.08);
    color: var(--brand);
    flex-shrink: 0;
}

.home-hero__highlight-icon svg {
    width: 20px;
    height: 20px;
}

.home-hero__highlight-body {
    min-width: 0;
}

.home-hero__highlight-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 8px;
}

.home-hero__highlight-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.22);
    background: rgba(168, 255, 53, 0.06);
    color: var(--brand);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__highlight h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.home-hero__highlight p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.54);
}

/* ---- Features ---- */

.home-features {
    width: 100%;
    max-width: 100%;
    padding: 32px var(--page-pad) 80px;
    margin: 0;
    position: relative;
}

.home-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--page-pad);
    right: var(--page-pad);
    height: 1px;
    background: linear-gradient(90deg, rgba(168,255,53,0.35), rgba(168,255,53,0.08), transparent);
}

.home-features__inner {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home-features__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-features__eyebrow,
.home-app-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.28);
    background: rgba(168, 255, 53, 0.08);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.home-features__header h2,
.home-app-cta__inner h2 {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    text-wrap: balance;
}

.home-features__header p,
.home-app-cta__inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    font-size: 1rem;
    text-wrap: balance;
}

.home-features__grid {
    width: 100%;
    max-width: var(--section-max);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.home-feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px 24px 26px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.72);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    height: 100%;
    cursor: default;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-feature-card:hover {
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 24px rgba(168, 255, 53, 0.05);
}

.home-feature-card__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.home-feature-card__step {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: var(--radius-sharp);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(168, 255, 53, 0.08);
    border: 1px solid rgba(168, 255, 53, 0.22);
}

.home-feature-card__app {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.home-feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.18);
    background: rgba(168, 255, 53, 0.08);
    color: var(--brand);
    margin-bottom: 18px;
}

.home-feature-card__icon svg {
    width: 22px;
    height: 22px;
}

.home-feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.home-feature-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.56);
    max-width: none;
}

/* ---- App CTA ---- */

.home-app-cta {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--page-pad) 110px;
    margin: 0;
}

.home-app-cta__inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 44px 40px;
    border-radius: 28px;
    border: 1px solid rgba(168, 255, 53, 0.22);
    background: linear-gradient(165deg, rgba(168,255,53,0.08) 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px 40px;
    align-items: center;
}

.home-app-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.home-app-cta__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.home-app-cta__glow {
    position: absolute;
    top: -40%;
    left: 12%;
    transform: none;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(168, 255, 53, 0.15);
    filter: blur(60px);
    animation: ctaGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.home-app-cta__inner h2 {
    position: relative;
    margin-bottom: 12px;
}

.home-app-cta__inner p {
    position: relative;
    margin-bottom: 0;
    max-width: 560px;
}

.home-app-cta__btn {
    position: relative;
    border: none;
    border-radius: var(--radius-sharp);
    padding: 15px 36px;
    background: linear-gradient(135deg, #b8ff55, #A8FF35);
    color: #000;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    min-width: 210px;
    box-shadow: 0 12px 32px rgba(168, 255, 53, 0.28);
}

/* ---- Results ---- */

.home-results {
    width: 100%;
    max-width: var(--section-max);
    padding: 0 var(--page-pad) 90px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home-results .results-header,
.home-results .results-grid,
.home-results .results-empty,
.home-results .results-error,
.home-results__loading {
    width: 100%;
    max-width: var(--section-max);
}

.home-results .results-header {
    text-align: left;
    margin-bottom: 32px;
}

.home-results .results-header h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.home-results .results-header p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
}

.home-results__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.home-results .results-empty,
.home-results .results-error {
    text-align: left;
    max-width: 480px;
    margin-left: 0;
    margin-right: 0;
}

.home-results .results-grid {
    justify-items: stretch;
}

.modal--animated {
    display: flex !important;
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__grid,
    .home-hero__orb,
    .home-hero__particle,
    .home-hero__badge-dot,
    .home-hero__title-accent,
    .home-app-cta__glow,
    .home-search__field-shell::before {
        animation: none !important;
    }
}

@media (max-width: 1024px) {
    .home-hero__bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-app-cta__inner {
        grid-template-columns: 1fr;
    }

    .home-app-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .home-hero {
        min-height: auto;
        padding: 36px var(--page-pad) 64px;
    }

    .home-hero__shell {
        gap: 28px;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-hero__stat {
        padding: 18px 16px;
    }

    .home-hero__stat-label {
        font-size: 0.68rem;
    }

    .home-features {
        padding: 24px var(--page-pad) 64px;
    }

    .home-features__grid {
        grid-template-columns: 1fr;
        max-width: none;
        margin: 0;
    }

    .home-app-cta {
        padding: 0 var(--page-pad) 88px;
    }

    .home-app-cta__inner {
        padding: 36px 24px;
    }
}

@media (max-width: 600px) {
    .home-hero__title-accent {
        display: inline;
    }

    .home-search__field-shell {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .home-search__icon {
        display: none;
    }

    .home-search__input {
        padding: 12px 14px;
        text-align: left;
        background-color: rgba(8, 8, 8, 0.95);
        border-radius: var(--radius-sharp);
    }

    .home-search__btn {
        width: 100%;
    }
}

/* Legacy home classes kept for compatibility */
.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 500px;
    width: 100%;
    justify-content: center;
}

#search-input {
    flex: 1;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sharp);
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.search-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #000;
    background-color: #A8FF35;
    border-radius: var(--radius-sharp);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 1rem;
    width: 100%;
    text-align: center;
}

.container-ftr p {
    font-size: 1rem;
    cursor: pointer;
}

/* ========== ABOUT PAGE ========== */

.about-page {
    overflow-x: clip;
    width: 100%;
}

.about-hero {
    position: relative;
    padding: 56px var(--page-pad) 72px;
    isolation: isolate;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.about-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: orbFloat 10s ease-in-out infinite;
}

.about-hero__orb--1 {
    width: 420px;
    height: 420px;
    top: -12%;
    left: 10%;
    background: rgba(168, 255, 53, 0.1);
}

.about-hero__orb--2 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 8%;
    background: rgba(168, 255, 53, 0.06);
    animation-delay: -4s;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__eyebrow,
.about-faq__eyebrow,
.partners-hero__eyebrow,
.blog-hero__eyebrow,
.contact-hero__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(168, 255, 53, 0.28);
    background: rgba(168, 255, 53, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-hero__inner h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    text-wrap: balance;
}

.about-hero__lead {
    margin: 0 0 16px;
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    text-wrap: balance;
}

.about-hero__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.52);
    text-wrap: balance;
}

.about-highlights {
    padding: 0 var(--page-pad) 64px;
}

.about-highlights__grid {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-highlight-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-highlight-card:hover {
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.about-highlight-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(168, 255, 53, 0.1);
    color: var(--brand);
}

.about-highlight-card__icon svg {
    width: 22px;
    height: 22px;
}

.about-highlight-card h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.about-highlight-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.about-faq {
    padding: 24px var(--page-pad) 80px;
}

.about-faq__header {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-faq__header h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
}

.about-faq__header p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.about-accordion {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-accordion__item {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-accordion__item--open {
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.about-accordion__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.about-accordion__index {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand);
    opacity: 0.85;
}

.about-accordion__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-accordion__chevron {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.28s ease, color 0.28s ease;
}

.about-accordion__chevron svg {
    width: 20px;
    height: 20px;
}

.about-accordion__chevron--open {
    transform: rotate(180deg);
    color: var(--brand);
}

.about-accordion__panel {
    overflow: hidden;
}

.about-accordion__content {
    padding: 0 22px 22px 54px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
}

.about-accordion__content p {
    margin: 0 0 12px;
}

.about-accordion__content p:last-child {
    margin-bottom: 0;
}

.about-accordion__content a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-accordion__content a:hover {
    color: #c8ff6a;
}

.about-page__empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 48px 0;
}

.about-cta {
    padding: 0 var(--page-pad) 100px;
}

.about-cta__inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 44px 36px;
    border-radius: 28px;
    border: 1px solid rgba(168, 255, 53, 0.2);
    background: linear-gradient(165deg, rgba(168,255,53,0.08), rgba(255,255,255,0.02));
    text-align: center;
}

.about-cta__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(168, 255, 53, 0.14);
    filter: blur(60px);
    pointer-events: none;
}

.about-cta__inner h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
}

.about-cta__inner p {
    position: relative;
    margin: 0 auto 28px;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.about-cta__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sharp);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-cta__btn--primary {
    background: linear-gradient(135deg, #b8ff55, #A8FF35);
    color: #000;
    box-shadow: 0 10px 28px rgba(168, 255, 53, 0.25);
}

.about-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(168, 255, 53, 0.32);
}

.about-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.about-cta__btn--ghost:hover {
    border-color: rgba(168, 255, 53, 0.3);
    color: var(--brand);
}

@media (max-width: 900px) {
    .about-highlights__grid {
        grid-template-columns: 1fr;
    }

    .about-accordion__content {
        padding-left: 22px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .about-accordion__trigger {
        padding: 16px 18px;
        gap: 12px;
    }

    .about-cta__inner {
        padding: 32px 22px;
    }

    .about-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========== ACCORDION & SERVICES (ABOUT / EXTRA) ========== */

.accordion-section {
    width: 100%;
    text-align: left;
    margin: 0 auto;
    padding: 40px;
}

.accordion {
    background-color: transparent;
    color: #A8FF35;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: transparent;
}

.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-section .text-section {
    padding-left: 1%;
}

.bosluq {
    margin-top: 5rem;
}

.services-section {
    width: 100%;
    padding: 20px;
    background-color: #333;
    color: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-category {
    flex-basis: 20%;
    margin: 10px;
}

.service-category h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.service-category ul {
    list-style-type: none;
    padding: 0;
}

.service-category li {
    margin-bottom: 5px;
}

/* ========== CONTACT PAGE ========== */

.contact-page {
    overflow-x: clip;
    width: 100%;
    color: #f5f5f5;
}

.contact-hero {
    position: relative;
    padding: 56px var(--page-pad) 48px;
    isolation: isolate;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero__inner h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.contact-hero__inner p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: flex-start;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 var(--page-pad) 80px;
}

.contact-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 22px;
}

.contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-points li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    padding-left: 18px;
}

.contact-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
}

.contact-card {
    background: rgba(8, 8, 8, 0.92);
    border-radius: var(--radius-box);
    padding: 28px 26px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: rgba(0, 0, 0, 0.65);
    border-radius: var(--radius-sharp);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(168, 255, 53, 0.45);
    box-shadow: 0 0 0 1px rgba(168, 255, 53, 0.2);
}

/* SUCCESS + ERROR */

.alert-success {
    background: #0d2d11;
    border: 1px solid #24c965;
    color: #b8ffd1;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}

.error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
}

/* BUTTON */

.btn-primary {
    background: #A8FF35;
    color: #000;
    font-weight: 600;
    border-radius: var(--radius-sharp);
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    transition: transform 0.08s ease, box-shadow 0.08s ease, opacity 0.1s ease;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 255, 53, 0.4);
}

.btn-full {
    width: 100%;
    margin-top: 4px;
}

/* ========== SEARCH RESULTS PAGE ========== */

.search-page {
    overflow-x: clip;
    width: 100%;
    color: #f5f5f5;
}

.search-page__hero {
    position: relative;
    padding: 48px 0 28px;
    isolation: isolate;
    overflow: hidden;
}

.search-page__hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.search-page__hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
}

.search-page__hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    text-align: left;
}

.search-page__title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}

.search-page__query {
    color: var(--brand);
}

.search-page__lead {
    margin: 0 0 24px;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

.search-results {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 8px var(--page-pad) 80px !important;
}

.search-results .results-header {
    text-align: left;
}

.search-results .results-header h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
}

/* ========== SEARCH RESULTS GRID ========== */

.results-section {
    max-width: 1100px;
    margin: 0 auto;

    /* navbar boşluğu body’de */
    padding: 20px 24px 80px;

    color: #f5f5f5;
}

.results-section.loading {
    opacity: 0.7;
}

.results-header {
    margin-top: 10px;
    margin-bottom: 16px;
}

.results-header h2 {
    font-size: 20px;
    margin: 0 0 4px;
}

.results-header p {
    margin: 0;
    font-size: 13px;
    color: #a0a0a0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.search-results .results-grid--companies {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
}

.results-empty,
.results-error {
    font-size: 14px;
    margin-top: 16px;
}

.results-empty {
    color: #a0a0a0;
}

.results-error {
    color: #ff6b6b;
}

.hidden {
    display: none;
}

/* Company cards */

.company-card {
    background: #050505;
    border-radius: var(--radius-box);
    border: 1px solid #1f1f1f;
    padding: 20px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.company-logo-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-sharp);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.company-logo-placeholder {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-main-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.company-meta {
    font-size: 12px;
    color: #a0a0a0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.company-meta span::before {
    content: "• ";
}

.company-meta span:first-child::before {
    content: "";
}

.company-card-contact {
    display: grid;
    gap: 4px;
    padding-top: 2px;
    border-top: 1px solid #1a1a1a;
}

.company-card-body {
    font-size: 13px;
    color: #d0d0d0;
}

.company-address,
.company-email {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #b8b8b8;
}

.company-email {
    color: #8f8f8f;
    font-size: 12px;
}

.company-card__listings {
    display: grid;
    gap: 16px;
}

.company-listing-block {
    border: 1px solid #1a1a1a;
    border-radius: var(--radius-sharp);
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 16px;
}

.company-listing-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.company-match-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.company-match-badge--listing {
    color: #d8f5a0;
    background: rgba(168, 255, 53, 0.12);
    border: 1px solid rgba(168, 255, 53, 0.22);
}

.company-match-badge--service {
    color: #b8d4ff;
    background: rgba(120, 170, 255, 0.1);
    border: 1px solid rgba(120, 170, 255, 0.2);
}

.company-listing-block .listing-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #f0f0f0;
}

.company-services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.company-service-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    align-items: baseline;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.35);
}

.company-service-row .service-title {
    color: #e8e8e8;
    line-height: 1.4;
}

.company-service-row .service-price {
    font-size: 13px;
    font-weight: 600;
    color: #a8ff35;
    white-space: nowrap;
}

.company-service-row .service-description {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.45;
}

.company-listing-empty {
    margin: 0;
    font-size: 13px;
    color: #8a8a8a;
}

.search-highlight {
    background: rgba(168, 255, 53, 0.22);
    color: inherit;
    padding: 0 2px;
    border-radius: 3px;
}

.company-listing {
    margin-top: 4px;
}

.company-listing .listing-service {
    font-size: 12px;
    color: #A8FF35;
}

/* ========== APP DOWNLOAD MODAL ========== */

.app-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.app-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.app-modal__panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(90vh, 820px);
    overflow: auto;
    padding: 32px 28px 28px;
    border-radius: 28px;
    border: 1px solid rgba(168, 255, 53, 0.18);
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(168, 255, 53, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.98));
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 80px rgba(168, 255, 53, 0.08);
}

.app-modal__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(168, 255, 53, 0.16);
    filter: blur(60px);
    pointer-events: none;
}

.app-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.app-modal__close svg {
    width: 18px;
    height: 18px;
}

.app-modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.app-modal__header {
    position: relative;
    text-align: center;
    margin-bottom: 24px;
    padding-right: 36px;
}

.app-modal__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
}

.app-modal__header h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.app-modal__header p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.app-modal__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.app-modal__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.app-modal__tab svg {
    width: 18px;
    height: 18px;
}

.app-modal__tab--active {
    background: linear-gradient(135deg, #b8ff55, #A8FF35);
    color: #000;
    box-shadow: 0 8px 24px rgba(168, 255, 53, 0.22);
}

.app-modal__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-modal__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.app-modal__card--open {
    border-color: rgba(168, 255, 53, 0.24);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.app-modal__card-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.app-modal__card-trigger:hover {
    background: rgba(255, 255, 255, 0.03);
}

.app-modal__card--open .app-modal__card-trigger {
    background: rgba(168, 255, 53, 0.04);
}

.app-modal__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    flex-shrink: 0;
}

.app-modal__chevron svg {
    width: 18px;
    height: 18px;
}

.app-modal__chevron--open {
    transform: rotate(180deg);
    color: var(--brand);
    border-color: rgba(168, 255, 53, 0.28);
}

.app-modal__card-panel {
    overflow: hidden;
    padding: 0 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-modal__card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.app-modal__card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(168, 255, 53, 0.1);
    color: var(--brand);
    flex-shrink: 0;
}

.app-modal__card-icon svg {
    width: 20px;
    height: 20px;
}

.app-modal__card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
}

.app-modal__card-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(168, 255, 53, 0.85);
}

.app-modal__card-body strong {
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.app-modal__card-body span:last-child {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.5);
}

.app-modal__qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 12px 10px;
    border-radius: 16px;
    border: 1px dashed rgba(168, 255, 53, 0.22);
    background: rgba(168, 255, 53, 0.04);
}

.app-modal__qr-frame {
    display: inline-flex;
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid rgba(168, 255, 53, 0.35);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(168, 255, 53, 0.12);
}

.app-modal__qr-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
}

.app-modal__link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    line-height: 1.45;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.app-modal__link:hover {
    color: var(--brand);
    border-color: rgba(168, 255, 53, 0.28);
    background: rgba(168, 255, 53, 0.06);
}

.app-modal__footer {
    margin: 18px 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 600px) {
    .app-modal {
        padding: 16px;
        align-items: flex-end;
    }

    .app-modal__panel {
        width: 100%;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        max-height: 92vh;
        padding: 28px 20px 24px;
    }

    .app-modal__qr-frame svg {
        width: 112px !important;
        height: 112px !important;
    }
}

/* ========== MODAL (PLATFORM CHOICE) ========== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.modal-content {
    background: #050505;
    border-radius: 18px;
    padding: 22px 22px 18px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
    max-width: 360px;
    width: 90%;
    text-align: center;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 20px;
}

.platform-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.platform-btn {
    flex: 1;
    border-radius: var(--radius-sharp);
    border: 1px solid #333;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
}

.platform-btn.active {
    background: #A8FF35;
    color: #000;
    border-color: #A8FF35;
}

.app-link {
    display: block;
    margin-bottom: 8px;
    color: #A8FF35;
    text-decoration: none;
    font-size: 14px;
}

.app-link:hover {
    text-decoration: underline;
}

.close-btn {
    margin-top: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: var(--radius-sharp);
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
}

.close-btn:hover {
    background: #444;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }

    .footer {
        position: static;
        margin-top: 40px;
    }

    .results-section { padding: 20px 16px 70px; }
}

@media (max-width: 600px) {
    .contact-card { padding: 18px 16px 20px; }

    .contact-form .form-row { flex-direction: column; }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========== PARTNERS PAGE ========== */

.partners-page {
    overflow-x: clip;
    width: 100%;
}

.partners-hero {
    position: relative;
    padding: 56px var(--page-pad) 48px;
    isolation: isolate;
    overflow: hidden;
}

.partners-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.partners-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.partners-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.partners-hero__inner h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.partners-hero__inner p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.partners-section {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 var(--page-pad) 80px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.partner-card {
    background: rgba(10, 10, 10, 0.95);
    color: #fff;
    border-radius: var(--radius-box);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    width: 100%;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(168, 255, 53, 0.06);
}

.partner-card-media {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10%;
    box-sizing: border-box;
    display: block;
}

.partner-card-media .partner-logo-placeholder {
    font-size: clamp(40px, 11vw, 56px);
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.partner-card-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.partner-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.partner-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 6px;
}

.partner-stars {
    display: inline-flex;
    gap: 0;
    letter-spacing: -1px;
}

.partner-star {
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    line-height: 1;
}

.partner-star.is-on {
    color: #e8a400;
}

.partner-reviews {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.partners-empty {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-align: center;
    padding: 48px 0;
}

@media (max-width: 1100px) {
    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .partners-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* =========================
   BLOG (LIST + DETAIL)
   ========================= */

.blog-page {
    overflow-x: clip;
    width: 100%;
    color: #f5f5f5;
}

.blog-hero {
    position: relative;
    padding: 56px var(--page-pad) 48px;
    isolation: isolate;
    overflow: hidden;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blog-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.blog-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero__inner h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.blog-hero__inner p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.blog-hero__count {
    display: block;
    margin-top: 10px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.blog-empty {
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 var(--page-pad) 80px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-align: center;
}

.blog-grid {
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 var(--page-pad) 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.blog-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card {
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 22px 22px 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-box);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 255, 53, 0.22);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(168, 255, 53, 0.06);
}

.blog-card-meta {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.blog-card-title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.blog-card-desc {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
}

.blog-card-cta {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand);
}

/* DETAIL */

.blog-article {
    overflow-x: clip;
    width: 100%;
    color: #f5f5f5;
}

.blog-article__hero {
    position: relative;
    padding: 48px 0 32px;
    isolation: isolate;
    overflow: hidden;
}

.blog-article__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blog-article__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 255, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 255, 53, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
}

.blog-article__head,
.blog-article__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
    text-align: left;
}

.blog-article__head {
    padding-bottom: 8px;
}

.blog-article__content {
    padding-bottom: 80px;
}

.blog-article__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
    transition: opacity 0.2s ease;
}

.blog-article__back:hover {
    opacity: 0.85;
}

.blog-article__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.blog-article__date,
.blog-article__author {
    color: rgba(255, 255, 255, 0.5);
}

.blog-article__title {
    margin: 0 0 16px;
    max-width: 900px;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
    text-wrap: balance;
}

.blog-article__lead {
    margin: 0;
    max-width: 760px;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.blog-article__body {
    width: 100%;
    max-width: 760px;
    margin: 0;
    padding: 0;
}

.blog-content {
  font-size: 15px;
  line-height: 1.85;
  color: #eaeaea;
}

.blog-content p { margin: 0 0 14px; color: #dcdcdc; }

.blog-content h2 {
  font-size: 22px;
  margin: 26px 0 10px;
  font-weight: 950;
}

.blog-content h3 {
  font-size: 18px;
  margin: 20px 0 8px;
  font-weight: 950;
}

.blog-content ul, .blog-content ol { margin: 0 0 14px 20px; padding: 0; }
.blog-content li { margin: 6px 0; color: #dcdcdc; }

.blog-content a { color: #A8FF35; text-decoration: underline; }
.blog-content a:hover { opacity: 0.9; }

.blog-content blockquote {
  margin: 16px 0;
  padding: 12px 14px;
  background: #060606;
  border-left: 3px solid #A8FF35;
  border-radius: 12px;
  color: #cfcfcf;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  display: block;
  margin: 14px 0;
}

.blog-content hr {
  border: 0;
  border-top: 1px solid #1f1f1f;
  margin: 20px 0;
}

/* ========== SITE FOOTER ========== */

.site-footer {
  width: 100%;
  margin-top: 48px;
  padding: 40px var(--page-pad) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 4, 4, 0.95);
}

.site-footer__inner {
  width: 100%;
  max-width: var(--section-max);
  margin: 0 auto 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer__name {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.site-footer__tagline {
  margin: 0;
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--brand);
}

.site-footer__copy {
  width: 100%;
  max-width: var(--section-max);
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 700px) {
  .site-footer__inner {
    flex-direction: column;
  }
}

/* ========== NEXT.JS POLISH (subtle improvements) ========== */

html {
  scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(168, 255, 53, 0.55);
  outline-offset: 2px;
}

.home-search__input:focus-visible {
  outline: none;
}

.search-btn:disabled,
.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.company-card,
.blog-card,
.partner-card {
  will-change: transform;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-section:not(.loading) .company-card {
  animation: fadeInUp 0.35s ease both;
}

.results-section:not(.loading) .company-card:nth-child(2) { animation-delay: 0.05s; }
.results-section:not(.loading) .company-card:nth-child(3) { animation-delay: 0.1s; }
.results-section:not(.loading) .company-card:nth-child(4) { animation-delay: 0.15s; }

/* ========== SEARCH CONTROLS & CARD ACTIONS ========== */

.search-page__controls {
  display: grid;
  gap: 14px;
  width: 100%;
}

.home-search__combobox {
  position: relative;
  width: 100%;
}

.home-search__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-box);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.home-search__dropdown-label {
  padding: 6px 10px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.home-search__dropdown-item {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: var(--radius-sharp);
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.home-search__dropdown-item:hover,
.home-search__dropdown-item.is-active {
  background: rgba(168, 255, 53, 0.12);
  color: #fff;
}

.home-search__dropdown-mark {
  padding: 0;
  border-radius: 2px;
  background: rgba(168, 255, 53, 0.28);
  color: inherit;
}

.search-city-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-city-filter__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.search-city-filter__select {
  min-width: 180px;
  padding: 10px 12px;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font: inherit;
}

.company-card-actions {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #1a1a1a;
}

.company-card-actions__reviews {
  font-size: 12px;
  color: #a8ff35;
  font-weight: 600;
}

.company-card-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-card-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sharp);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.company-card-actions__btn--primary {
  background: #a8ff35;
  color: #000;
}

.company-card-actions__btn--ghost {
  border-color: #2a2a2a;
  color: #fff;
  background: transparent;
}

.company-card-actions__hint {
  margin: 0;
  font-size: 12px;
  color: #8a8a8a;
}

.company-card-actions__hint a {
  color: #a8ff35;
}

/* ========== COMPANY PROFILE PAGE ========== */

.company-page__hero {
  position: relative;
  padding: 40px var(--page-pad) 32px;
  isolation: isolate;
}

.company-page__hero-bg,
.company-page__hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.company-page__hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
}

.company-page__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.company-page__back {
  display: inline-block;
  margin-bottom: 18px;
  color: #a8ff35;
  text-decoration: none;
  font-size: 14px;
}

.company-page__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.company-logo-wrap--lg {
  width: 88px;
  height: 88px;
}

.company-page__intro h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.company-page__phone a {
  color: #d8d8d8;
  text-decoration: none;
}

.company-page__section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--page-pad) 36px;
}

.company-page__section h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.company-page__description p {
  margin: 0 0 10px;
  line-height: 1.7;
  color: #cfcfcf;
}

.company-reviews {
  display: grid;
  gap: 14px;
}

.company-review {
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-sharp);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
}

.company-review__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.company-stars,
.company-star {
  color: #444;
}

.company-star.is-on {
  color: #a8ff35;
}

/* ========== SERVICES BROWSE ========== */

.services-page__hero {
  position: relative;
  padding: 56px var(--page-pad) 40px;
}

.services-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-page__hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.services-page__hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.services-page__hero-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.services-page__hero-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* ========== POLICY PAGES ========== */

.policy-page {
  overflow-x: clip;
  width: 100%;
  color: #f5f5f5;
}

.policy-page__hero {
  position: relative;
  padding: 48px 0 28px;
  isolation: isolate;
  overflow: hidden;
}

.policy-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.policy-page__hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 255, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 255, 53, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 20% 0%, #000 20%, transparent 75%);
}

.policy-page__hero-inner,
.policy-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--section-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  text-align: left;
}

.policy-page__title {
  margin: 0 0 12px;
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.policy-page__meta {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.policy-page__content {
  padding-bottom: 80px;
}

.policy-page__body {
  max-width: 760px;
  margin: 0;
}

.policy-page__intro {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.policy-page__section-title {
  margin: 36px 0 14px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
}

.policy-page__section-title:first-child {
  margin-top: 0;
}

.policy-page__paragraph {
  margin: 0 0 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.policy-page__item {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sharp);
  background: rgba(255, 255, 255, 0.02);
}

.policy-page__item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.policy-page__item span {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.services-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px var(--page-pad) 72px;
}

.services-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-box);
  background: #050505;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.services-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 255, 53, 0.35);
}

.services-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.services-card p {
  margin: 0;
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 14px;
}

.services-card__cta {
  color: #a8ff35;
  font-size: 13px;
  font-weight: 600;
}

.site-footer__nav--legal {
  margin-top: 4px;
}

/* ========== STATUS PAGES (404 / 500 / MAINTENANCE) ========== */

.status-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: #000;
  color: #fff;
}

.status-page__logo {
  max-width: 180px;
  width: auto;
  height: auto;
  margin-bottom: 2rem;
}

.status-page__title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: #A8FF35;
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.status-page__message {
  font-size: 1rem;
  color: #ccc;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.status-page__days {
  font-size: 1.2rem;
  color: #A8FF35;
  margin: 0 0 1.5rem;
}

.status-page__action,
.status-page__retry {
  color: #A8FF35;
  text-decoration: none;
  border: 1px solid #A8FF35;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sharp);
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.status-page__action:hover,
.status-page__retry:hover {
  background: #A8FF35;
  color: #000;
}

.status-page__retry {
  margin-bottom: 12px;
}
