/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}
.trust-title1 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 18px;
}

#rating-top-count {
    font-weight: 400;
    color: #94a3b8;
}
/* NAV */
.nav {
    background: #0b1220;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 42px;
}

.nav nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    transition: 0.3s;
}

.nav nav a:hover {
    color: #ffffff;
}

.btn-call {
    background: #06b6d4;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-call:hover {
    background: #22d3ee;
}

.services {
    padding: 120px 0;
    background: #0f172a;
}

.services h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111827;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #06b6d4;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.service-card p {
    color: #94a3b8;
}

.service-card.highlight {
    border-color: #06b6d4;
}
.reviews-actions {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.btn-google,
.btn-google-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-google {
    background: #ffffff;
    color: #000;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.trust-bar {
    background: #0b1220;
    padding: 60px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
}

.trust-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: #111827;
    border-radius: 10px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

.trust-item:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 28px;
}

.trust-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.trust-sub {
    font-size: 14px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .trust-grid {
        gap: 20px;
    }
}

.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.btn-google-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-google-outline:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
}
/* HERO */
.hero {
    padding: 140px 0;
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #06b6d4;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #22d3ee;
}

.btn-outline {
    border: 1px solid #06b6d4;
    color: #06b6d4;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #06b6d4;
    color: #000;
}

/* HERO CARD */
.hero-card {
    background: #111827;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #1e293b;
}

.hero-card h3 {
    margin-bottom: 15px;
}

.hero-card ul {
    list-style: none;
    color: #94a3b8;
}

.hero-card li {
    margin-bottom: 10px;
}

/* STATUS */
.status {
    padding: 120px 0;
    background: #0b1220;
}

.status h2 {
    text-align: center;
    margin-bottom: 40px;
}

.status-box {
    max-width: 500px;
    margin: auto;
}

.status-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 6px;
    color: white;
}

.status-box button {
    width: 100%;
    padding: 14px;
    background: #06b6d4;
    border: none;
    border-radius: 6px;
    color: black;
    font-weight: 600;
    cursor: pointer;
}

.contact {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #0b1220 0%,
        #0f172a 100%
    );
}

.contact-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-card {
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 35px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 40px rgba(6,182,212,0.08);
}

.contact-row {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 22px;
    width: 38px;
    height: 38px;
    background: #0f172a;
    border: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.contact-label {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
}

.contact-value a {
    color: #06b6d4;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    background: #0f172a;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.contact-left h2 {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item span {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #111827;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item small {
    display: block;
    font-size: 13px;
    color: #94a3b8;
}

.contact-item strong {
    font-weight: 500;
}

.contact-item a {
    color: #06b6d4;
    text-decoration: none;
}

/* STRIPE FORM */

.stripe-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.stripe-form .form-field {
    position: relative;
}

.stripe-form .form-field.full {
    grid-column: span 2;
    margin-bottom: 24px;
}

.stripe-form input,
.stripe-form textarea,
.stripe-form select {
    width: 100%;
    padding: 18px 14px;
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.stripe-form input:focus,
.stripe-form textarea:focus,
.stripe-form select:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}

.stripe-form label {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 12px;
    background: #0f172a;
    padding: 0 6px;
    color: #06b6d4;
}

.btn-stripe {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg,#06b6d4,#22d3ee);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-stripe:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6,182,212,0.35);
}

/* MOBILE */

@media (max-width: 1000px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .stripe-form .form-row {
        grid-template-columns: 1fr;
    }

    .stripe-form .form-field.full {
        grid-column: span 1;
    }
}


.ticket-card {
    background: #111827;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid #1e293b;
}

.verify-btn {
    margin-left: 10px;
    background: #06b6d4;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.status-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.status-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #1e293b;
    border-radius: 6px;
    font-size: 14px;
}

.status-step.active {
    background: #06b6d4;
    color: black;
    font-weight: 600;
}

.error {
    color: #ef4444;
    margin-top: 15px;
}
.ticket-wrapper {
    margin-top: 40px;
    background: #111827;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #1e293b;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ticket-header h3 {
    font-size: 22px;
}

.priority {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 8px;
    text-transform: uppercase;
}

.priority.niski {
    background: #1e293b;
    color: #22c55e;
}

.priority.średni {
    background: #1e293b;
    color: #facc15;
}

.priority.wysoki {
    background: #1e293b;
    color: #ef4444;
}

.date-box {
    text-align: right;
    font-size: 13px;
    color: #94a3b8;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.ticket-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #06b6d4;
}

.ticket-section p {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.ticket-description {
    margin-bottom: 40px;
}

.ticket-description h4 {
    margin-bottom: 10px;
    color: #06b6d4;
}

.ticket-description p {
    background: #0f172a;
    padding: 20px;
    border-radius: 8px;
}

/* STATUS PROGRESS */

.status-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.progress-step .circle {
    width: 18px;
    height: 18px;
    background: #1e293b;
    border-radius: 50%;
    margin: 0 auto 8px;
}

.progress-step.active .circle {
    background: #06b6d4;
}

.progress-step span {
    font-size: 14px;
    color: #94a3b8;
}

.progress-step.active span {
    color: #ffffff;
}

@media (max-width: 900px) {
    .ticket-grid {
        grid-template-columns: 1fr;
    }
}
/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 14px;
}
/* ========================= */
/*     STARTUP REVIEWS       */
/* ========================= */

.reviews {
    padding: 160px 0;
    background: radial-gradient(circle at top, #111827, #0b1220);
    overflow: hidden;
    position: relative;
}

.reviews-top {
    text-align: center;
    margin-bottom: 80px;
}

/* RATING BOX */

.rating-box {
    display: inline-block;
    padding: 30px 50px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid #1e293b;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(6,182,212,0.15);
}

.rating-value {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(90deg,#06b6d4,#22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-stars {
    color: #facc15;
    letter-spacing: 4px;
    font-size: 22px;
    margin: 10px 0;
}

.rating-label {
    color: #94a3b8;
    font-size: 14px;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #06b6d4;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
}
/* SLIDER */

.slider-wrapper {
    overflow: hidden;
    position: relative;
}



.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}


.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    min-width: 380px;
    padding: 35px;
    border-radius: 20px;
    background: linear-gradient(145deg,#111827,#0f172a);
    border: 1px solid #1e293b;
    transition: 0.4s;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #06b6d4;
    box-shadow: 0 0 30px rgba(6,182,212,0.2);
}

.review-author {
    font-weight: 600;
    margin-bottom: 8px;
}

.review-stars {
    color: #facc15;
    margin-bottom: 15px;
}

.review-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

/* BLUR EDGES */

.slider-fade-left,
.slider-fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(to right,#0b1220,transparent);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(to left,#0b1220,transparent);
}
.review-card-link {
    text-decoration: none;
    color: inherit;
}

.review-card-link:hover .review-card {
    transform: translateY(-10px) scale(1.02);
    border-color: #06b6d4;
    box-shadow: 0 0 40px rgba(6,182,212,0.3);
    cursor: pointer;
}
/* INFINITE SCROLL */

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */

@media(max-width:768px){
    .review-card{
        min-width: 300px;
    }

    .rating-value{
        font-size: 40px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .reviews-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-track::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: 85%;
        scroll-snap-align: start;
    }
}
/* MOBILE */
@media (max-width: 900px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 34px;
    }
}