* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff2a2a;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: #ff2a2a;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ff2a2a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #d91f1f;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    border-color: #ff2a2a;
    color: #ff2a2a;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.82)),
        url("../img/hero.jpg") center center / cover no-repeat;
    padding-top: 90px;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d9d9d9;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.4rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-text {
    max-width: 620px;
    color: #c7c7c7;
    font-size: 1.05rem;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-line {
    width: 4px;
    height: 24px;
    background: #ff2a2a;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #cfcfcf;
    letter-spacing: 1px;
}

.section h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-description {
    max-width: 800px;
    color: #bdbdbd;
    font-size: 1rem;
}

.intro {
    background: #111111;
}

.services {
    background: #151515;
}

.services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #1c1c1c;
    padding: 32px 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: rgba(255, 42, 42, 0.8);
    transform: translateY(-4px);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.service-card p {
    color: #bdbdbd;
}

.workflow {
    background: #101010;
}

.workflow-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.workflow-step {
    background: #181818;
    padding: 30px 24px;
    border-left: 4px solid #ff2a2a;
}

.workflow-step span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 800;
    color: #5c5c5c;
}

.workflow-step h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.workflow-step p {
    color: #bdbdbd;
}

.cta {
    background: #0d0d0d;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #101010);
    padding: 60px 30px;
    border: 1px solid rgba(255, 42, 42, 0.2);
}

.cta-box h2 {
    margin-bottom: 14px;
}

.cta-box p {
    color: #c4c4c4;
    margin-bottom: 24px;
}

.footer {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    text-align: center;
    color: #8e8e8e;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.4rem;
    }

    .services-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
        gap: 18px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
        url("../img/hero.jpg") center center / cover no-repeat;
    padding: 180px 0 100px;
}

.small-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.form-section {
    background: #111111;
}

.form-box {
    background: #1a1a1a;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.form-title {
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #ffffff;
}

/* CHECKBOX SERVIZI */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.service-option {
    background: #1c1c1c;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-option input {
    accent-color: #ff2a2a;
}

.service-option:hover {
    border-color: #ff2a2a;
    transform: translateY(-2px);
}

/* FILE UPLOAD */
.file-upload-box {
    border: 2px dashed rgba(255,255,255,0.15);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.25s;
}

.file-upload-box:hover {
    border-color: #ff2a2a;
}

.file-upload-box input {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }
}
.request-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.85)),
        url("../img/centralina.jpeg") center center / cover no-repeat;
    padding: 180px 0 110px;
}

.request-section {
    background:
        radial-gradient(circle at top left, rgba(255, 42, 42, 0.08), transparent 28%),
        linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.request-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 32px;
    align-items: start;
}

.request-info-card,
.request-form-card {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(15, 15, 15, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.request-info-card {
    padding: 38px 32px;
    position: sticky;
    top: 120px;
}

.request-info-card h2 {
    margin: 14px 0 18px;
    font-size: 2rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.request-info-card p {
    color: #c7c7c7;
    margin-bottom: 28px;
}

.section-mini-title {
    display: inline-block;
    color: #ff2a2a;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.request-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.request-benefits li {
    position: relative;
    padding-left: 20px;
    color: #d2d2d2;
}

.request-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ff2a2a;
}

.request-form-card {
    padding: 36px 32px;
}

.request-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.form-section-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.form-section-header h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #d7d7d7;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 15px 16px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8e8e8e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 42, 42, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.08);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

.service-card-option::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 42, 42, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card-option:hover {
    border-color: rgba(255, 42, 42, 0.7);
    transform: translateY(-2px);
}

.service-card-option:hover::after {
    opacity: 1;
}

.service-card-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-card-custom {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-card-content strong {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.service-card-content small {
    color: #a9a9a9;
    font-size: 0.88rem;
    line-height: 1.4;
}

.service-card-option input:checked + .service-card-custom {
    background: #ff2a2a;
    border-color: #ff2a2a;
    box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.12);
}

.service-card-option input:checked ~ .service-card-content strong {
    color: #ff5a5a;
}

.service-card-option input:checked ~ .service-card-content small {
    color: #d0d0d0;
}

.service-card-option:has(input:checked) {
    border-color: rgba(255, 42, 42, 0.9);
    background: linear-gradient(180deg, rgba(32, 16, 16, 0.95), rgba(20, 20, 20, 1));
}

.upload-area {
    display: block;
    cursor: pointer;
}

.upload-area input {
    display: none;
}

.upload-area-inner {
    border: 1px dashed rgba(255, 42, 42, 0.55);
    background: linear-gradient(180deg, #121212, #0f0f0f);
    padding: 42px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.upload-area:hover .upload-area-inner {
    border-color: #ff2a2a;
    background: linear-gradient(180deg, #161616, #101010);
}

.upload-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 42, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2a2a;
    font-size: 1.5rem;
    font-weight: 700;
}

.upload-area-inner h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.upload-area-inner p {
    color: #c7c7c7;
    margin-bottom: 8px;
}

.upload-note {
    color: #868686;
    font-size: 0.9rem;
}

.request-submit-row {
    display: flex;
    justify-content: flex-start;
}

.btn-large {
    min-width: 220px;
    padding: 16px 28px;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    .request-layout {
        grid-template-columns: 1fr;
    }

    .request-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .request-form-card,
    .request-info-card {
        padding: 28px 20px;
    }

    .form-grid,
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

.turbo-hero-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0;

   background:
    linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%),
    url("../img/turbo.jpg") center center / cover no-repeat;
}

.turbo-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at left center, rgba(255, 42, 42, 0.08), transparent 30%);
    z-index: 1;
}

.turbo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.turbo-hero-content .hero-subtitle {
    margin-bottom: 14px;
    color: #d0d0d0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.turbo-hero-content .section-mini-title {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff2a2a;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.turbo-hero-content h1 {
    margin: 0 0 20px;
    font-size: 4.8rem;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}

.turbo-hero-content .hero-text {
    max-width: 620px;
    color: #d2d2d2;
    font-size: 1.1rem;
    line-height: 1.7;
}

.turbo-section {
    background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
}

.turbo-layout {
    display: block;
}

.turbo-text {
    max-width: 980px;
}

.turbo-text h2 {
    margin: 15px 0 20px;
    font-size: 2.4rem;
    text-transform: uppercase;
}

.turbo-text p {
    color: #c7c7c7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.turbo-benefits {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.turbo-benefits li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #d8d8d8;
}

.turbo-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ff2a2a;
}

@media (max-width: 992px) {
    .turbo-hero-bg {
        min-height: 85vh;
        padding: 130px 0 80px;
        background-position: center center;
    }

    .turbo-hero-content h1 {
        font-size: 3.6rem;
    }
}

@media (max-width: 768px) {
    .turbo-hero-bg {
        min-height: 75vh;
        padding: 120px 0 70px;
    }

    .turbo-hero-content h1 {
        font-size: 2.7rem;
        line-height: 1;
    }

    .turbo-hero-content .hero-text {
        font-size: 1rem;
    }

    .turbo-text h2 {
        font-size: 2rem;
    }
}
.hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;

    background:
        linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.7) 100%),
        url("../img/hero.jpg") center center / cover no-repeat;
}

/* overlay leggero per profondità */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left center, rgba(255, 42, 42, 0.08), transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 800;
    margin: 20px 0;
    text-transform: uppercase;
}

.hero-text {
    color: #d0d0d0;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-bg {
        min-height: 80vh;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
.track-hero-bg {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.72) 100%),
        url("../img/hero.jpg") center center / cover no-repeat;
}

.track-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left center, rgba(255, 42, 42, 0.08), transparent 32%);
}

.track-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.track-section {
    background:
        radial-gradient(circle at top left, rgba(255, 42, 42, 0.06), transparent 24%),
        linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
}

.track-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: start;
}

.track-search-card,
.track-result-card {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(14, 14, 14, 0.98));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}

.track-search-card {
    padding: 34px 30px;
    position: sticky;
    top: 120px;
}

.track-search-card h2 {
    margin: 14px 0 16px;
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.track-search-card p {
    color: #c6c6c6;
    margin-bottom: 26px;
}

.track-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.track-result-card {
    padding: 34px 30px;
}

.track-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.result-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #a9a9a9;
    text-transform: uppercase;
}

.track-result-header h3 {
    margin: 0;
    font-size: 2rem;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-progress {
    background: rgba(255, 42, 42, 0.14);
    color: #ff4f4f;
    border: 1px solid rgba(255, 42, 42, 0.22);
}

.status-completed {
    background: rgba(0, 200, 120, 0.14);
    color: #47d48f;
    border: 1px solid rgba(0, 200, 120, 0.22);
}

.track-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.track-result-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 18px 16px;
}

.track-result-item span {
    display: block;
    margin-bottom: 8px;
    color: #9f9f9f;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.track-result-item strong {
    font-size: 1rem;
    color: #ffffff;
}

.track-note-box {
    margin-bottom: 28px;
    padding: 20px 18px;
    border-left: 4px solid #ff2a2a;
    background: rgba(255,255,255,0.03);
}

.track-note-box span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ff5c5c;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.track-note-box p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.7;
}

.track-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.track-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0.55;
}

.track-step.completed,
.track-step.active {
    opacity: 1;
}

.track-step-dot {
    width: 16px;
    height: 16px;
    margin-top: 5px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.28);
    background: transparent;
    flex-shrink: 0;
}

.track-step.completed .track-step-dot {
    background: #47d48f;
    border-color: #47d48f;
}

.track-step.active .track-step-dot {
    background: #ff2a2a;
    border-color: #ff2a2a;
    box-shadow: 0 0 0 6px rgba(255, 42, 42, 0.12);
}

.track-step-content strong {
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.track-step-content small {
    color: #bcbcbc;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .track-layout {
        grid-template-columns: 1fr;
    }

    .track-search-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .track-result-grid {
        grid-template-columns: 1fr;
    }

    .track-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-search-card,
    .track-result-card {
        padding: 26px 20px;
    }

    .track-search-card h2,
    .track-result-header h3 {
        font-size: 1.6rem;
    }
}
.home-hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.68) 100%),
        url("../img/hero.jpg") center center / cover no-repeat;
}

.home-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left center, rgba(255, 42, 42, 0.08), transparent 30%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.home-hero-content h1 {
    margin: 16px 0 22px;
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
}

.home-intro {
    background: linear-gradient(180deg, #101010 0%, #141414 100%);
}

.home-intro-box {
    max-width: 950px;
}

.home-intro-box h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.home-intro-box p {
    color: #c7c7c7;
    font-size: 1.05rem;
    line-height: 1.8;
}

.home-services {
    background:
        radial-gradient(circle at top left, rgba(255, 42, 42, 0.06), transparent 24%),
        linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.home-services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-highlight-card {
    background: linear-gradient(180deg, rgba(26,26,26,0.96), rgba(12,12,12,0.98));
    border: 1px solid rgba(255,255,255,0.06);
    padding: 34px 30px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.service-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff4a4a;
}

.service-highlight-card h3 {
    margin-bottom: 16px;
    font-size: 2rem;
    text-transform: uppercase;
}

.service-highlight-card p {
    color: #c8c8c8;
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-highlight-card ul li {
    position: relative;
    padding-left: 20px;
    color: #d9d9d9;
}

.service-highlight-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ff2a2a;
}

.home-workflow {
    background: #0d0d0d;
}

.home-cta {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

@media (max-width: 992px) {
    .home-hero-content h1 {
        font-size: 3.8rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero-bg {
        min-height: 82vh;
        padding: 120px 0 80px;
    }

    .home-hero-content h1 {
        font-size: 2.8rem;
    }

    .home-intro-box h2,
    .service-highlight-card h3 {
        font-size: 2rem;
    }
}
.home-hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.68) 100%),
        url("../img/hero.jpg") center center / cover no-repeat;
}

.home-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left center, rgba(255, 42, 42, 0.08), transparent 30%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.home-hero-content h1 {
    margin: 16px 0 22px;
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
}

.home-intro {
    background: linear-gradient(180deg, #101010 0%, #141414 100%);
}

.home-intro-box {
    max-width: 950px;
}

.home-intro-box h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.home-intro-box p {
    color: #c7c7c7;
    font-size: 1.05rem;
    line-height: 1.8;
}

.home-services {
    background:
        radial-gradient(circle at top left, rgba(255, 42, 42, 0.06), transparent 24%),
        linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.home-services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-highlight-card {
    background: linear-gradient(180deg, rgba(26,26,26,0.96), rgba(12,12,12,0.98));
    border: 1px solid rgba(255,255,255,0.06);
    padding: 34px 30px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.service-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff4a4a;
}

.service-highlight-card h3 {
    margin-bottom: 16px;
    font-size: 2rem;
    text-transform: uppercase;
}

.service-highlight-card p {
    color: #c8c8c8;
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-highlight-card ul li {
    position: relative;
    padding-left: 20px;
    color: #d9d9d9;
}

.service-highlight-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ff2a2a;
}

.home-workflow {
    background: #0d0d0d;
}

.home-cta {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

@media (max-width: 992px) {
    .home-hero-content h1 {
        font-size: 3.8rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero-bg {
        min-height: 82vh;
        padding: 120px 0 80px;
    }

    .home-hero-content h1 {
        font-size: 2.8rem;
    }

    .home-intro-box h2,
    .service-highlight-card h3 {
        font-size: 2rem;
    }
}

.form-alert {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-left: 4px solid;
}

.form-alert-error {
    background: rgba(255, 60, 60, 0.08);
    border-color: #ff3c3c;
    color: #ffd1d1;
}

.form-alert-success {
    background: rgba(0, 200, 120, 0.08);
    border-color: #39d98a;
    color: #d8ffe9;
}
.request-price-box {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.request-price-box p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #bdbdbd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.request-price-box strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.request-price-box small {
    font-size: 13px;
    color: #9a9a9a;
}
.request-price-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.request-code {
    display: inline-block;
    margin-top: 6px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}
.request-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.request-modal-overlay.is-open {
    display: flex;
}

.request-modal-box {
    width: 100%;
    max-width: 520px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.request-modal-box h3 {
    margin: 0 0 12px;
    color: #fff;
}

.request-modal-box p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.request-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    flex-wrap: wrap;
}
.track-search-card {
    position: relative !important;
    top: auto !important;
}
.track-search-card {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.admin-detail-header {
    background: rgba(25, 25, 49, 0.85);
    border-radius: 18px;
    padding: 28px;
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.30),
        0 10px 22px rgba(0, 0, 0, 0.22);
}
.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #101318;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
}

.chat-message.mine {
    justify-content: flex-end;
}

.chat-message.theirs {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 75%;
    padding: 14px 16px;
    border-radius: 16px;
    word-break: break-word;
}

.chat-message.mine .chat-bubble {
    background: #0d6efd;
    color: #fff;
}

.chat-message.theirs .chat-bubble {
    background: #1e232d;
    color: #fff;
}

.chat-bubble small {
    display: block;
    margin-top: 8px;
    opacity: 0.7;
    font-size: 12px;
}

.chat-form {
    display: flex;
    gap: 10px;
}

.chat-form input {
    flex: 1;
    background: #101318;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
}

.chat-form input:focus {
    outline: none;
    border-color: #0d6efd;
}
.has-unread-message {
    background: rgba(255, 193, 7, 0.08);
    box-shadow: inset 4px 0 0 #ffc107;
}

.unread-message-wrapper {
    margin-bottom: 10px;
}

.unread-message-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffc107;
    color: #111;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
    animation: unreadPulse 1.4s infinite;
}

@keyframes unreadPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.45);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}
.footer {
    background: #090b10;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p,
.footer-col a,
.footer-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    line-height: 1.7;
}

.footer-col a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-map iframe {
    border-radius: 16px;
    overflow: hidden;
    filter: grayscale(1) contrast(1.05);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 26px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .header-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #080808;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        padding: 14px;
        z-index: 9999;
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 13px 14px;
        border-radius: 12px;
        width: 100%;
    }

    .nav a:hover {
        background: rgba(255,255,255,0.06);
    }

    .nav .btn {
        text-align: center;
        margin-top: 8px;
    }

    .header-user-badge {
        justify-content: center;
    }
}
@media (max-width: 900px) {

    .header {
        padding: 10px 0;
    }

    .header-container {
        min-height: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 0.08em;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 900px) {

    .header {
        padding: 8px 0;
    }

    .header-container {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 0.08em;
        margin: 0;
        text-align: left;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        margin-left: auto;
        font-size: 22px;
        padding: 0;
    }

    .nav {
        top: calc(100% + 8px);
    }
}
@media (max-width: 900px) {
    .logo {
        width: auto;
        display: inline-flex;
    }
}
@media (max-width: 900px) {

    .header {
        padding: 8px 0 !important;
    }

    .header .header-container {
        min-height: 54px !important;
        height: 54px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .header .logo {
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin: 0 !important;
        font-size: 18px !important;
        line-height: 1 !important;
        letter-spacing: 0.10em !important;
    }

    .header .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 22px !important;
        line-height: 1 !important;
    }

    .header .nav {
        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: auto !important;
    }
}
.status-waiting-payment {
    background: #fff3cd;
    color: #856404;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .2s ease;
}

.footer-bottom a:hover {
    opacity: .7;
}
.hero-main-btn {
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.35);
}

.hero-main-btn:hover {
    transform: scale(1.09);
}
.hero-top-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.hero-upload-big {
    padding: 22px 54px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 8px rgba(255, 40, 40, 0.16),
                0 24px 60px rgba(255, 40, 40, 0.38);
}

.hero-upload-big:hover {
    transform: translateY(-3px) scale(1.03);
}
.logo img {
    display: block;
    height: 55px;
    width: auto;
}
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}
.logo img {
    height: 150px;
    width: auto;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 150px;
    width: auto;
}

@media (max-width: 900px) {
    .logo img {
        height: 42px;
    }
}
.price-update-form{
    margin-top:10px;
}

.price-input-group{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.price-prefix{
    font-size:18px;
    font-weight:700;
}

.price-input-group input{
    width:140px;
    padding:10px 12px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.15);
    background:#111;
    color:#fff;
    font-size:16px;
}