:root {
    --bg-dark: #07111f;
    --bg-dark-2: #0d1b2d;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --primary: #f0a500;
    --primary-hover: #d89200;
    --border: #e5e7eb;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(2, 8, 23, 0.08);
    --shadow-soft: 0 6px 18px rgba(2, 8, 23, 0.04);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.65;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
}

h1,
h2,
h3,
h4,
h5 {
    letter-spacing: -0.3px;
}

p {
    max-width: 60ch;
}

/* NAVBAR */
.navbar {
    min-height: 82px;
    background: #ffffff;
}

.navbar-brand {
    color: var(--primary);
    font-size: 2rem;
    letter-spacing: 0.2px;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--primary-hover);
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary);
}

/* HERO */
.hero {
    background:
        linear-gradient(rgba(7, 17, 31, 0.86), rgba(7, 17, 31, 0.88)),
        url("/assets/img/shutterstock_1223013911.jpg") center center / cover no-repeat;
    color: #ffffff;
    padding: 7rem 0 6rem;
}

.hero-subpage {
    padding: 6rem 0 5rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #ffd166;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.2rem;
    max-width: 900px;
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-points {
    display: grid;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.94);
    margin-top: 1.5rem;
}

.hero-points i {
    color: #ffd166;
    margin-right: 0.5rem;
}

.hero-card {
    background: rgba(0, 12, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.92);
    max-width: none;
}

.mini-contact {
    display: grid;
    gap: 0.95rem;
    font-size: 1.05rem;
}

.mini-contact i {
    color: #ffd166;
    margin-right: 0.55rem;
}

.mini-contact a {
    color: #ffffff;
}

/* SECTIONS */
section,
#services,
#why,
#pricing,
#about,
#contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#why,
#contact {
    background: #f9fafb;
}

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    letter-spacing: -0.5px;
}

.section-heading p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.08rem;
    max-width: none;
}

.section-dark {
    background: var(--bg-dark);
    color: #ffffff;
}

/* CARDS */
.service-card,
.info-card,
.pricing-card,
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem 2.2rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.card-link:hover .service-card,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2, 8, 23, 0.08);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.service-card h4,
.info-card h4,
.pricing-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.service-card p,
.info-card p,
.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.03rem;
    line-height: 1.75;
    max-width: none;
}

.service-card p {
    flex-grow: 1;
}

.card-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    color: inherit;
}

/* PRICING */
.pricing-card {
    position: relative;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.price-note {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 28px rgba(240, 165, 0, 0.10);
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #111827;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    line-height: 1;
}

/* ABOUT */
.about-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 2.25rem;
    height: 100%;
}

.about-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.08rem;
    max-width: none;
}

.content-box-light {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.content-box-light p {
    color: var(--text-muted);
}

.about-list {
    display: grid;
    gap: 1rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

.about-list-item i {
    color: #ffd166;
    font-size: 1.2rem;
}

.light-list .about-list-item {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

/* CONTACT */
.map-box {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-height: 340px;
    background: #ffffff;
}

.contact-form-wrap {
    padding: 2rem;
}

.form-control {
    border-radius: 14px;
    border: 1px solid #d7dce2;
    padding: 0.95rem 1rem;
    min-height: 54px;
    font-size: 1rem;
    background: #ffffff;
}

textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.14);
}

.form-message {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid transparent;
}

.form-message-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
    font-weight: 500;
}

.form-message-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* BUTTONS */
.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 0.85rem 1.35rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #111827;
    box-shadow: 0 6px 18px rgba(240, 165, 0, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #111827;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-width: 1.5px;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: #111827;
    background: #ffffff;
}

/* CASES */
.case-list {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.case-list li {
    margin-bottom: 0.65rem;
}

.case-sidebar {
    position: sticky;
    top: 105px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.case-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    border-radius: 999px;
    padding: 0.38rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
}

#cases .service-card,
#related-cases .service-card {
    width: 100%;
    min-height: 100%;
}

/* FAQ */
.faq-section .info-card {
    height: auto !important;
    min-height: 0 !important;
}

.faq-section .info-card p {
    margin-bottom: 0;
}

/* FOOTER */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: var(--text-muted);
}

.footer h5 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.footer a {
    color: #64748b;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    text-decoration: none;
}

.footer hr {
    border-color: #e5e7eb;
}

/* COOKIES */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #07111f;
    color: #ffffff;
    z-index: 1055;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .hero {
        padding: 5.5rem 0 4.5rem;
    }

    section,
    #services,
    #why,
    #pricing,
    #about,
    #contact {
        padding-top: 4.25rem;
        padding-bottom: 4.25rem;
    }

    .section-heading h2 {
        font-size: 2.4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .case-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.7rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero .lead {
        font-size: 1.05rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .service-card,
    .info-card,
    .pricing-card,
    .contact-form-wrap,
    .hero-card,
    .about-box {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    #contact .btn-primary {
        width: 100%;
        min-width: 0;
    }

    p {
        max-width: none;
    }
}
