:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #edf3fb;
    --surface-deep: #0f1f34;
    --text: #142033;
    --muted: #5d6b7b;
    --line: rgba(21, 41, 69, 0.12);
    --primary: #1456d9;
    --primary-dark: #0f3ea0;
    --accent: #1aa6a2;
    --gold: #c9a45c;
    --shadow: 0 18px 45px rgba(15, 31, 52, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(20, 86, 217, 0.08), transparent 26%),
        linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand strong,
.section-title,
.display-title {
    font-family: "Manrope", sans-serif;
}

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

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

.site-header {
    position: relative;
    overflow: hidden;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20, 32, 51, 0.06);
}

.navbar-brand strong,
.navbar-brand small {
    display: block;
    line-height: 1.1;
}

.navbar-brand strong {
    font-size: 1rem;
}

.navbar-brand small {
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    box-shadow: 0 6px 18px rgba(15, 31, 52, 0.08);
}

.nav-link {
    font-weight: 600;
    color: var(--muted);
    position: relative;
    margin: 0 0.2rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.btn {
    border-radius: 999px;
    padding: 0.82rem 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2877ff);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(20, 86, 217, 0.24);
}

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

.btn-outline-dark {
    border: 1px solid var(--line);
    color: var(--text);
}

.hero-banner {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10, 23, 43, 0.94), rgba(13, 57, 129, 0.88)),
        center/cover no-repeat;
}

.hero-home {
    background-image:
        linear-gradient(135deg, rgba(10, 23, 43, 0.92), rgba(13, 57, 129, 0.84)),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80");
}

.hero-about {
    background-image:
        linear-gradient(135deg, rgba(10, 23, 43, 0.92), rgba(16, 66, 149, 0.85)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.hero-services {
    background-image:
        linear-gradient(135deg, rgba(10, 23, 43, 0.92), rgba(14, 56, 130, 0.82)),
        url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80");
}

.hero-faq {
    background-image:
        linear-gradient(135deg, rgba(10, 23, 43, 0.92), rgba(14, 56, 130, 0.82)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
}

.hero-terms,
.hero-privacy,
.hero-contact {
    background-image:
        linear-gradient(135deg, rgba(10, 23, 43, 0.92), rgba(14, 56, 130, 0.82)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
}

.hero-banner h1 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 760px;
    margin-bottom: 1rem;
}

.hero-copy {
    font-size: 1.18rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.65;
    animation: floatOrb 7s ease-in-out infinite;
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    right: -40px;
    top: 70px;
    background: radial-gradient(circle, rgba(26, 166, 162, 0.5), transparent 70%);
}

.hero-orb-two {
    width: 220px;
    height: 220px;
    left: -50px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(201, 164, 92, 0.32), transparent 70%);
    animation-delay: 1.2s;
}

section {
    position: relative;
}

.section-space {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-copy {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
}

.glass-card,
.metric-card,
.content-card,
.faq-card,
.contact-card,
.legal-card,
.feature-card,
.process-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 41, 69, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card,
.process-card,
.testimonial-card,
.metric-card,
.content-card,
.faq-card,
.contact-card,
.legal-card {
    padding: 1.75rem;
    height: 100%;
}

.highlight-panel {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, #f0f5fd);
    border: 1px solid rgba(20, 86, 217, 0.08);
    box-shadow: var(--shadow);
}

.metric-card .metric-value {
    font: 800 2rem/1 "Manrope", sans-serif;
    color: var(--primary);
}

.icon-chip {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 86, 217, 0.14), rgba(26, 166, 162, 0.14));
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.banner-strip {
    padding: 1.15rem 1.4rem;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(20, 86, 217, 0.1), rgba(26, 166, 162, 0.1));
    border: 1px solid rgba(20, 86, 217, 0.08);
}

.banner-strip strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
}

.stacked-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 420px;
    box-shadow: var(--shadow);
}

.stacked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 230px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(15, 31, 52, 0.92);
    color: #fff;
    box-shadow: 0 16px 30px rgba(7, 15, 27, 0.24);
}

.floating-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.workflow-line {
    position: relative;
    padding-left: 2rem;
}

.workflow-line::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), transparent);
}

.workflow-step {
    position: relative;
    margin-bottom: 1.25rem;
    color: var(--muted);
}

.workflow-step::before {
    content: "";
    position: absolute;
    left: -1.55rem;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(20, 86, 217, 0.1);
}

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

.check-list li,
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--muted);
}

.check-list li i,
.contact-list li i {
    color: var(--accent);
}

.stats-row {
    margin-top: 2rem;
}

.faq-card .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    color: var(--text);
}

.faq-card .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary);
}

.faq-card .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(21, 41, 69, 0.08);
    background: transparent;
}

.faq-card .accordion-item:last-child {
    border-bottom: 0;
}

.contact-card input,
.contact-card textarea,
.subscribe-form input {
    width: 100%;
    border: 1px solid rgba(21, 41, 69, 0.12);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus,
.subscribe-form input:focus {
    outline: 0;
    border-color: rgba(20, 86, 217, 0.6);
    box-shadow: 0 0 0 4px rgba(20, 86, 217, 0.12);
}

.contact-card textarea {
    min-height: 150px;
    resize: vertical;
}

.site-footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #0d1a2d, #09111e);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(20, 86, 217, 0.22), rgba(26, 166, 162, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta h2 {
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.footer-cta p,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.76);
}

.subscribe-form {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.footer-grid h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.72rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.8rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.logo-tile {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 41, 69, 0.06);
}

.legal-card h2,
.legal-card h3 {
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card ul {
    padding-left: 1.15rem;
}

.image-banner {
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reveal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 31, 52, 0.14);
    border-color: rgba(20, 86, 217, 0.16);
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.04);
    }
}

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

    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding: 4.5rem 0 3.8rem;
    }

    .section-space {
        padding: 4rem 0;
    }

    .stacked-image {
        min-height: 300px;
    }
}
