:root {
    --brand-primary: #0f766e;
    --brand-primary-dark: #0d5c56;
    --brand-accent: #10b981;
    --brand-dark: #0f172a;
    --brand-muted: #64748b;
    --brand-light: #f8fafc;
    --brand-gradient: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
    --shadow-soft: 0 10px 40px rgba(15, 118, 110, 0.12);
    --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--brand-dark);
    background: #fff;
    line-height: 1.6;
}

.site-navbar {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-brand,
.footer-brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-brand .brand-main,
.footer-brand .brand-main {
    color: #fff;
}

.site-brand .brand-accent,
.footer-brand .brand-accent {
    color: var(--brand-accent);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(16, 185, 129, 0.15);
}

.btn-nav-cta {
    background: var(--brand-accent) !important;
    color: #fff !important;
    margin-left: 0.5rem;
}

.btn-nav-cta:hover {
    background: #059669 !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0f766e;
    background: var(--brand-gradient);
    color: #fff;
    padding: 5.5rem 0 6rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 500;
    opacity: 0.95;
    max-width: 680px;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: 999px;
}

.btn-hero-primary {
    background: #fff;
    color: var(--brand-primary-dark);
    border: none;
}

.btn-hero-primary:hover {
    background: #f0fdf4;
    color: var(--brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--brand-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-primary);
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--brand-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.brands-section {
    background: var(--brand-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.brand-logo-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-logo-card-dark {
    background: #0b1220;
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: rgba(16, 185, 129, 0.35);
}

.brand-logo-card-dark:hover {
    border-color: rgba(16, 185, 129, 0.55);
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.brand-count-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.faq-section {
    background: #fff;
}

.legal-info-card {
    background: var(--brand-light);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--brand-accent);
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
}

.legal-info-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-primary);
    border-radius: 1.25rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.legal-info-heading {
    font-weight: 700;
    margin-bottom: 0;
}

.legal-info-text {
    color: var(--brand-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.faq-subheading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0;
}

.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 1rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-dark);
    background: #fff;
    padding: 1.15rem 1.35rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: rgba(16, 185, 129, 0.06);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(16, 185, 129, 0.35);
}

.faq-accordion .accordion-button::after {
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    color: var(--brand-muted);
    font-size: 0.975rem;
    line-height: 1.7;
    padding: 0 1.35rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    padding-top: 0.25rem;
}

.service-benefit-card {
    background: var(--brand-light);
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
}

.service-benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.service-benefit-icon.client-icon {
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-primary);
}

.service-benefit-icon.company-icon {
    background: rgba(15, 118, 110, 0.12);
    color: var(--brand-primary-dark);
}

.service-benefit-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-benefit-card p {
    color: var(--brand-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

.about-image-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
}

.about-image-secondary {
    max-height: 420px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-secondary .about-image {
    max-height: 420px;
}

.about-text {
    color: var(--brand-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 500;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info-card > p {
    color: var(--brand-muted);
    margin-bottom: 1.75rem;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-primary);
    border-radius: 0.85rem;
    font-size: 1.2rem;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 0.15rem;
}

.contact-info-list p {
    color: var(--brand-muted);
    margin-bottom: 0;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--brand-dark);
}

.contact-form .form-control {
    border: 1px solid #dbe3ee;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.15);
}

.btn-contact-submit {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact-submit:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
}

.contact-alert {
    border-radius: 0.85rem;
    font-size: 0.95rem;
}

.cta-section {
    background: var(--brand-dark);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.page-hero {
    background: var(--brand-light);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--brand-muted);
    margin-bottom: 0;
}

.coming-soon-box {
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 1.25rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--brand-muted);
}

.coming-soon-box i {
    font-size: 3rem;
    color: var(--brand-accent);
    margin-bottom: 1rem;
}

.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 2rem;
    margin-top: 0;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: inline-block;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.25rem;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0 4.5rem;
    }

    .btn-nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        gap: 1.25rem;
    }

    .brand-logo-card {
        height: 90px;
        padding: 0.75rem;
    }

    .brand-logo-card img {
        max-height: 55px;
    }
}
