﻿:root {
    --primary: #0a8f9f;
    --primary-dark: #076f7b;
    --accent: #ff6b3d;
    --ink: #10223f;
    --muted: #5f6b7a;
    --surface: #f4f8fb;
    --white: #ffffff;
    --footer: #0b1628;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    color: var(--ink);
    background-color: var(--white);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    color: var(--ink);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    border-width: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 143, 159, 0.25);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s linear 0s;
}

.topbar {
    background: var(--ink);
    color: #dbe7f5;
    font-size: 0.9rem;
}

.topbar a {
    color: #dbe7f5;
}

.topbar a:hover {
    color: var(--white);
}

.sticky-top {
    top: -100px;
    transition: top 0.4s ease;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.brand-mark {
    color: var(--ink);
}

.brand-growth {
    color: var(--primary);
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 700;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .dropdown-item.active {
    color: var(--primary);
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(16, 34, 63, 0.08);
    padding: 0.7rem;
}

.dropdown-item {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 0.7rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 25%, rgba(10, 143, 159, 0.18), transparent 42%),
        radial-gradient(circle at 88% 15%, rgba(255, 107, 61, 0.18), transparent 30%),
        linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
    padding-top: 20px;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(10, 143, 159, 0.08);
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.section-kicker {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.hero-card {
    background: var(--white);
    border: 1px solid rgba(16, 34, 63, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(16, 34, 63, 0.09);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-card:hover {
    box-shadow: 0 24px 48px rgba(16, 34, 63, 0.13);
    border-color: rgba(10, 143, 159, 0.2);
}

.hero-image-wrap,
.image-card {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: 0 16px 34px rgba(16, 34, 63, 0.12);
    background: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-image-wrap::after,
.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 143, 159, 0.05) 0%, rgba(255, 107, 61, 0.05) 100%);
    pointer-events: none;
}

.hero-image-wrap img,
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    display: block;
}

.hero-image-wrap {
    aspect-ratio: 5 / 4;
}

.image-card {
    aspect-ratio: 4 / 3;
}

.hero-image-wrap:hover img,
.image-card:hover img {
    transform: scale(1.08) rotate(0.5deg);
}

.metric-item {
    border-bottom: 1px dashed rgba(16, 34, 63, 0.15);
    padding: 0.9rem 0;
}

.metric-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.metric-value {
    margin: 0;
    font-weight: 800;
    color: var(--ink);
    font-size: 1.5rem;
}

.section-space {
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.8rem;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.section-heading .section-kicker {
    display: block;
    margin-bottom: 0.8rem;
}

.service-card {
    border: 1px solid rgba(16, 34, 63, 0.08);
    border-radius: 18px;
    padding: 1.8rem;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(16, 34, 63, 0.06);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16, 34, 63, 0.16);
    border-color: rgba(10, 143, 159, 0.2);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(10, 143, 159, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.service-card-detailed ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.service-media-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.service-media-grid .image-card {
    aspect-ratio: 3 / 2;
}

.about-panel {
    border-radius: 22px;
    background: linear-gradient(135deg, #f6fbff 0%, #edf5fc 100%);
    padding: 2.5rem;
    border: 2px solid rgba(10, 143, 159, 0.12);
    box-shadow: 0 12px 32px rgba(10, 143, 159, 0.08);
}

.about-badges {
    display: grid;
    gap: 1.2rem;
}

.about-badges div {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(10, 143, 159, 0.15);
    padding: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 143, 159, 0.06);
}

.about-badges div:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(10, 143, 159, 0.12);
}

.about-badges span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.about-badges p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.about-list i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.page-banner {
    padding: 110px 0 70px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 107, 61, 0.2), transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(10, 143, 159, 0.15), transparent 40%),
        linear-gradient(135deg, #10223f 0%, #173564 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 34, 63, 0.3) 100%);
    pointer-events: none;
}

.page-banner h1 {
    color: var(--white);
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.page-banner .section-kicker {
    color: #7fdce7;
}

.pricing-card {
    border: 1px solid rgba(16, 34, 63, 0.1);
    border-radius: 18px;
    padding: 2rem;
    background: var(--white);
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(16, 34, 63, 0.06);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 34, 63, 0.12);
}

.pricing-card ul {
    padding-left: 1.1rem;
    color: var(--muted);
    min-height: 118px;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 48px rgba(10, 143, 159, 0.2);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.badge-plan {
    display: inline-block;
    background: rgba(10, 143, 159, 0.13);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    font-weight: 700;
    font-size: 0.75rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.price span {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 1.7rem;
}

.cta-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-strip h2,
.cta-strip p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.site-footer {
    background: var(--footer);
    color: #c8d3e3;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
    color: #c8d3e3;
    line-height: 1.8;
}

.footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.5rem;
}

.footer-links a {
    color: #e4edf8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.1rem 0;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: none;
    z-index: 99;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid rgba(16, 34, 63, 0.15);
    padding: 0.75rem 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control::placeholder {
    color: rgba(95, 107, 122, 0.6);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 143, 159, 0.1), 0 0 0 1px var(--primary);
}

@media (max-width: 991.98px) {
    .topbar {
        display: none;
    }

    .navbar .nav-link {
        margin: 0.15rem 0;
    }

    .navbar .btn {
        margin-top: 0.8rem;
        width: fit-content;
    }

    .section-space {
        padding: 70px 0;
    }

    .service-media-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 50px;
    }

    .hero-card {
        margin-top: 1.5rem;
    }
}

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

    .hero-section .display-4 {
        font-size: 2rem;
    }

    .section-space {
        padding: 50px 0;
    }

    .about-panel {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.3rem;
    }

    .logo-img {
        height: 44px;
    }

    .cta-strip {
        padding: 40px 0;
    }
}
