/*
 * Profilent — Main Stylesheet
 *
 * Brand color: #09B5C1
 */

:root {
    /* Profilent Brand */
    --profilent-primary: #09B5C1;
    --profilent-primary-dark: #078E98;
    --profilent-primary-light: #DDF7F9;

    /* Dark / Text */
    --profilent-dark: #082F35;
    --profilent-dark-soft: #12454B;
    --profilent-text: #183E43;
    --profilent-muted: #6A7F83;

    /* Backgrounds */
    --profilent-white: #FFFFFF;
    --profilent-off-white: #F7FAFA;
    --profilent-light: #EEF7F8;

    /* Borders */
    --profilent-border: #D9E8EA;

    /* Layout */
    --profilent-container: 1240px;
}


/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--profilent-white);
    color: var(--profilent-text);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   ACCESSIBILITY
   ========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--profilent-primary);
    outline-offset: 3px;
}


/* =========================
   CONTAINER
   ========================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--profilent-container)
    );

    margin-inline: auto;
}


/* =========================
   TEMPORARY HOMEPAGE
   ========================= */

.profilent-home-placeholder {
    min-height: 60vh;

    display: grid;
    place-items: center;

    padding: 100px 0;

    background: var(--profilent-off-white);
}

.profilent-home-placeholder p {
    margin: 0;

    font-size: 20px;

    color: var(--profilent-muted);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--profilent-container)
        );
    }

}




/* =========================================================
   PROFILENT HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--profilent-white);
    border-bottom: 1px solid var(--profilent-border);
}

.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 700;
}

.site-logo__mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--profilent-primary);
    color: var(--profilent-white);

    font-size: 18px;
    font-weight: 800;
}

.site-logo__text {
    color: var(--profilent-dark);
    font-size: 21px;
    letter-spacing: -0.03em;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.site-navigation {
    margin-left: auto;
}

.site-navigation__list {
    display: flex;
    align-items: center;
    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-navigation__list > li {
    position: relative;
}

.site-navigation__list > li > a {
    display: flex;
    align-items: center;
    gap: 7px;

    min-height: 82px;
    padding: 0 15px;

    color: var(--profilent-text);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.site-navigation__list > li > a:hover,
.site-navigation__list > li.current-menu-item > a,
.site-navigation__list > li.current-menu-parent > a {
    color: var(--profilent-primary-dark);
}


/* =========================================================
   MENU ARROW
   ========================================================= */

.site-navigation__list
.menu-item-has-children
> a::after {
    content: "";

    width: 7px;
    height: 7px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg) translateY(-2px);

    transition: transform 180ms ease;
}

.site-navigation__list
.menu-item-has-children:hover
> a::after {
    transform: rotate(225deg) translateY(-1px);
}


/* =========================================================
   MEGA MENU FOUNDATION
   ========================================================= */

/*
 * WordPress creates nested <ul> elements for child menu items.
 *
 * The first child level becomes our dropdown / mega-menu panel.
 */

.site-navigation__list
.menu-item-has-children
> .sub-menu {

    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    width: 760px;

    margin: 0;
    padding: 28px;

    transform:
        translateX(-50%)
        translateY(10px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    background: var(--profilent-white);

    border: 1px solid var(--profilent-border);

    border-radius: 0 0 18px 18px;

    box-shadow:
        0 18px 50px rgba(8, 47, 53, 0.12);

    list-style: none;

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
}


/*
 * Open mega menu on hover.
 */

.site-navigation__list
.menu-item-has-children:hover
> .sub-menu,

.site-navigation__list
.menu-item-has-children:focus-within
> .sub-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   MEGA MENU ITEMS
   ========================================================= */

.site-navigation__list
.sub-menu
li {
    position: relative;
}

.site-navigation__list
.sub-menu
li
a {

    display: block;

    padding: 11px 13px;

    color: var(--profilent-text);

    font-size: 14px;
    line-height: 1.45;

    border-radius: 10px;

    transition:
        background-color 160ms ease,
        color 160ms ease;
}

.site-navigation__list
.sub-menu
li
a:hover {

    background: var(--profilent-light);

    color: var(--profilent-primary-dark);
}


/* =========================================================
   SECOND LEVEL MENU
   ========================================================= */

.site-navigation__list
.sub-menu
.sub-menu {

    position: static;

    margin: 4px 0 8px;

    padding: 0 0 0 12px;

    border-left: 2px solid var(--profilent-primary-light);

    list-style: none;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.site-header__cta {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    flex-shrink: 0;

    border-radius: 999px;

    background: var(--profilent-primary);

    color: var(--profilent-white);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.site-header__cta:hover {

    background: var(--profilent-primary-dark);

    color: var(--profilent-white);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(9, 181, 193, 0.25);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;

    border-radius: 10px;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-toggle span:not(.screen-reader-text) {

    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--profilent-dark);

    border-radius: 2px;

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    display: none;

    background: var(--profilent-white);

    border-top: 1px solid var(--profilent-border);

    box-shadow:
        0 15px 35px rgba(8, 47, 53, 0.08);
}

.mobile-navigation__list {

    margin: 0;
    padding: 12px 0 20px;

    list-style: none;
}

.mobile-navigation__list li {

    border-bottom: 1px solid var(--profilent-border);
}

.mobile-navigation__list a {

    display: block;

    padding: 15px 4px;

    color: var(--profilent-text);

    font-size: 16px;
    font-weight: 600;
}

.mobile-navigation__list a:hover {

    color: var(--profilent-primary-dark);
}


/* Mobile submenu */

.mobile-navigation__list
.sub-menu {

    margin: 0;
    padding: 0 0 8px 16px;

    list-style: none;

    border-left: 2px solid var(--profilent-primary-light);
}

.mobile-navigation__list
.sub-menu
a {

    padding: 10px 8px;

    font-size: 14px;

    font-weight: 500;
}


/* Mobile CTA */

.mobile-navigation__cta {

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    margin-bottom: 22px;

    border-radius: 999px;

    background: var(--profilent-primary);

    color: var(--profilent-white) !important;

    font-weight: 700 !important;
}


/* =========================================================
   SCREEN READER UTILITY
   ========================================================= */

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   RESPONSIVE HEADER
   ========================================================= */

@media (max-width: 1100px) {

    .site-header__inner {
        gap: 18px;
    }

    .site-navigation__list > li > a {
        padding-inline: 9px;
        font-size: 13px;
    }

    .site-header__cta {
        padding-inline: 16px;
    }

}


/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header__inner {
        min-height: 72px;
    }

    .site-navigation,
    .site-header__cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-navigation:not([hidden]) {
        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-header__inner {
        min-height: 68px;
    }

    .site-logo__mark {
        width: 34px;
        height: 34px;
    }

    .site-logo__text {
        font-size: 19px;
    }

}


/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.service-single {
    background: var(--profilent-white);
}


/* ---------------------------------------------------------
   Service Hero
   --------------------------------------------------------- */

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(9, 181, 193, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #082F35 0%,
            #0C3C43 100%
        );
    color: var(--profilent-white);
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border: 1px solid rgba(9, 181, 193, 0.25);
    border-radius: 50%;
}

.service-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.service-hero__eyebrow {
    margin: 0 0 22px;
    color: var(--profilent-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-hero__title {
    max-width: 850px;
    margin: 0;
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.service-hero__description {
    max-width: 720px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Main Content
   --------------------------------------------------------- */

.service-content {
    padding: 110px 0 130px;
}

.service-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 90px;
    align-items: start;
}

.service-content__main {
    min-width: 0;
}

.service-content__intro {
    max-width: 780px;
}

.service-content__intro p {
    margin: 0 0 24px;
    color: var(--profilent-text);
    font-size: 19px;
    line-height: 1.85;
}

.service-content__intro p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Features
   --------------------------------------------------------- */

.service-features {
    margin-top: 80px;
    padding-top: 70px;
    border-top: 1px solid var(--profilent-border);
}

.service-features h2 {
    margin: 0 0 35px;
    color: var(--profilent-dark);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.service-features__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 110px;
    padding: 26px;
    border: 1px solid var(--profilent-border);
    border-radius: 16px;
    background: var(--profilent-off-white);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.service-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(9, 181, 193, 0.55);
    background: var(--profilent-primary-light);
}

.service-feature__icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--profilent-primary);
    color: var(--profilent-white);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.service-feature__text {
    padding-top: 5px;
    color: var(--profilent-dark);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CTA Card
   --------------------------------------------------------- */

.service-content__aside {
    position: sticky;
    top: 120px;
}

.service-cta-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(9, 181, 193, 0.28),
            transparent 45%
        ),
        var(--profilent-dark);
    color: var(--profilent-white);
}

.service-cta-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border: 1px solid rgba(9, 181, 193, 0.35);
    border-radius: 50%;
}

.service-cta-card > * {
    position: relative;
    z-index: 1;
}

.service-cta-card__eyebrow {
    margin: 0 0 18px;
    color: var(--profilent-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-cta-card h2 {
    margin: 0;
    color: var(--profilent-white);
    font-size: 32px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.service-cta-card p:not(.service-cta-card__eyebrow) {
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.service-cta-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--profilent-primary);
    color: var(--profilent-white);
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.service-cta-card__button:hover {
    transform: translateY(-2px);
    background: var(--profilent-primary-dark);
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .service-hero {
        padding: 95px 0 85px;
    }

    .service-content {
        padding: 80px 0 100px;
    }

    .service-content__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-content__aside {
        position: static;
        max-width: 600px;
    }

}


@media (max-width: 700px) {

    .service-hero {
        padding: 75px 0 70px;
    }

    .service-hero__description {
        margin-top: 24px;
        font-size: 17px;
    }

    .service-content {
        padding: 65px 0 80px;
    }

    .service-content__intro p {
        font-size: 17px;
    }

    .service-features {
        margin-top: 55px;
        padding-top: 50px;
    }

    .service-features__grid {
        grid-template-columns: 1fr;
    }

    .service-feature {
        min-height: auto;
        padding: 22px;
    }

    .service-cta-card {
        padding: 30px;
    }

}


@media (max-width: 480px) {

    .service-hero__eyebrow {
        font-size: 12px;
    }

    .service-hero__title {
        font-size: 46px;
    }

    .service-content__intro p {
        font-size: 16px;
    }

    .service-cta-card h2 {
        font-size: 28px;
    }

}


/* ---------------------------------------------------------
   Reduced Motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .service-feature,
    .service-cta-card__button {
        transition: none;
    }

    .service-feature:hover,
    .service-cta-card__button:hover {
        transform: none;
    }

}


/* =========================================================
   SERVICES ARCHIVE
   ========================================================= */

.services-archive {
    background: var(--profilent-white);
}


/* ---------------------------------------------------------
   Services Hero
   --------------------------------------------------------- */

.services-archive__hero {
    padding: 120px 0 105px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(9, 181, 193, 0.14),
            transparent 35%
        ),
        var(--profilent-off-white);
    border-bottom: 1px solid var(--profilent-border);
}

.services-archive__eyebrow {
    margin: 0 0 22px;
    color: var(--profilent-primary-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-archive__title {
    max-width: 900px;
    margin: 0;
    color: var(--profilent-dark);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.services-archive__description {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--profilent-muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Services Grid
   --------------------------------------------------------- */

.services-archive__content {
    padding: 100px 0 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* ---------------------------------------------------------
   Service Card
   --------------------------------------------------------- */

.service-card {
    position: relative;
    display: flex;
    min-height: 360px;
    overflow: hidden;
    padding: 38px;
    border: 1px solid var(--profilent-border);
    border-radius: 22px;
    background: var(--profilent-white);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    bottom: -120px;
    border: 1px solid rgba(9, 181, 193, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(9, 181, 193, 0.5);
    box-shadow: 0 18px 50px rgba(8, 47, 53, 0.09);
}

.service-card__number {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-right: 28px;
    border-radius: 50%;
    background: var(--profilent-primary-light);
    color: var(--profilent-primary-dark);
    font-size: 13px;
    font-weight: 750;
}

.service-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-card__title {
    margin: 4px 0 0;
    color: var(--profilent-dark);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.service-card__title a {
    transition: color 180ms ease;
}

.service-card:hover .service-card__title a {
    color: var(--profilent-primary-dark);
}

.service-card__description {
    max-width: 460px;
    margin: 22px 0 0;
    color: var(--profilent-muted);
    font-size: 16px;
    line-height: 1.75;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    padding-top: 32px;
    color: var(--profilent-dark);
    font-size: 14px;
    font-weight: 750;
}

.service-card__link span {
    color: var(--profilent-primary-dark);
    font-size: 20px;
    transition: transform 180ms ease;
}

.service-card:hover .service-card__link span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   Empty State
   --------------------------------------------------------- */

.services-empty {
    padding: 80px 30px;
    text-align: center;
    border: 1px solid var(--profilent-border);
    border-radius: 20px;
    background: var(--profilent-off-white);
}

.services-empty h2 {
    margin: 0;
    color: var(--profilent-dark);
}

.services-empty p {
    margin: 12px 0 0;
    color: var(--profilent-muted);
}


/* ---------------------------------------------------------
   Services CTA
   --------------------------------------------------------- */

.services-archive__cta {
    padding: 90px 0;
    background: var(--profilent-dark);
}

.services-archive__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-archive__cta-eyebrow {
    margin: 0 0 15px;
    color: var(--profilent-primary);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.services-archive__cta h2 {
    max-width: 700px;
    margin: 0;
    color: var(--profilent-white);
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.services-archive__cta-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--profilent-primary);
    color: var(--profilent-white);
    font-size: 14px;
    font-weight: 750;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.services-archive__cta-button:hover {
    transform: translateY(-2px);
    background: var(--profilent-primary-dark);
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 850px) {

    .services-archive__hero {
        padding: 90px 0 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-archive__cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .services-archive__hero {
        padding: 70px 0 65px;
    }

    .services-archive__content {
        padding: 65px 0 80px;
    }

    .service-card {
        min-height: 320px;
        padding: 28px;
    }

    .service-card__number {
        width: 42px;
        height: 42px;
        margin-right: 20px;
    }

    .service-card__description {
        font-size: 15px;
    }

    .services-archive__cta {
        padding: 70px 0;
    }

    .services-archive__cta-button {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card__link span,
    .services-archive__cta-button {
        transition: none;
    }

    .service-card:hover,
    .services-archive__cta-button:hover {
        transform: none;
    }

}



/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(9, 181, 193, 0.12),
            transparent 32%
        ),
        var(--profilent-dark);
    color: var(--profilent-white);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 35%,
        black 100%
    );
    pointer-events: none;
}

.hero-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 50px;
    min-height: 720px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section__content {
    max-width: 720px;
}

.hero-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px;
    color: var(--profilent-primary);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-section__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--profilent-primary);
}

.hero-section__title {
    margin: 0;
    color: var(--profilent-white);
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero-section__title span {
    display: block;
    color: var(--profilent-primary);
}

.hero-section__description {
    max-width: 650px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.hero-section__button:hover {
    transform: translateY(-2px);
}

.hero-section__button--primary {
    background: var(--profilent-primary);
    color: var(--profilent-white);
}

.hero-section__button--primary:hover {
    background: var(--profilent-primary-dark);
}

.hero-section__button--primary span {
    font-size: 20px;
    line-height: 1;
}

.hero-section__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--profilent-white);
}

.hero-section__button--secondary:hover {
    border-color: var(--profilent-primary);
    background: rgba(9, 181, 193, 0.08);
}


/* ---------------------------------------------------------
   AI Visual
   --------------------------------------------------------- */

.hero-section__visual {
    position: relative;
    width: min(100%, 600px);
    aspect-ratio: 1 / 1;
    justify-self: end;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(9, 181, 193, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-orbit--one {
    width: 58%;
    height: 58%;
}

.hero-orbit--two {
    width: 76%;
    height: 76%;
    border-color: rgba(9, 181, 193, 0.14);
}

.hero-orbit--three {
    width: 94%;
    height: 94%;
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(9, 181, 193, 0.55);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(9, 181, 193, 0.24),
            rgba(8, 47, 53, 0.9) 65%
        );
    box-shadow:
        0 0 70px rgba(9, 181, 193, 0.18);
    transform: translate(-50%, -50%);
}

.hero-core__inner {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--profilent-primary);
    color: var(--profilent-dark);
    font-size: 23px;
    font-weight: 800;
    box-shadow:
        0 0 35px rgba(9, 181, 193, 0.38);
}

.hero-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 47, 53, 0.72);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 650;
}

.hero-node::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--profilent-primary);
    box-shadow: 0 0 12px rgba(9, 181, 193, 0.8);
}

.hero-node--one {
    top: 17%;
    left: 12%;
}

.hero-node--two {
    top: 25%;
    right: 4%;
}

.hero-node--three {
    right: 9%;
    bottom: 20%;
}

.hero-node--four {
    bottom: 12%;
    left: 15%;
}


/* ---------------------------------------------------------
   Hero Responsive
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .hero-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hero-section__content {
        max-width: 800px;
    }

    .hero-section__visual {
        width: min(100%, 560px);
        justify-self: center;
    }

}


@media (max-width: 700px) {

    .hero-section {
        min-height: auto;
    }

    .hero-section__inner {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-section__title {
        font-size: clamp(46px, 14vw, 68px);
    }

    .hero-section__description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-section__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-section__button {
        width: 100%;
    }

    .hero-section__visual {
        width: 100%;
        max-width: 460px;
    }

    .hero-core {
        width: 120px;
        height: 120px;
    }

    .hero-core__inner {
        width: 62px;
        height: 62px;
        font-size: 19px;
    }

    .hero-node {
        min-width: auto;
        min-height: 42px;
        padding: 8px 12px;
        font-size: 10px;
    }

}


@media (max-width: 420px) {

    .hero-section__inner {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-node--one {
        left: 3%;
    }

    .hero-node--two {
        right: 0;
    }

    .hero-node--three {
        right: 2%;
    }

    .hero-node--four {
        left: 4%;
    }

}


/* ---------------------------------------------------------
   Reduced Motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .hero-section__button {
        transition: none;
    }

    .hero-section__button:hover {
        transform: none;
    }

}



/* =========================================================
   HOMEPAGE TRUST SECTION
   ========================================================= */

.trust-section {
    padding: 34px 0;
    background: var(--profilent-white);
    border-bottom: 1px solid var(--profilent-border);
}

.trust-section__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--profilent-border);
}

.trust-section__eyebrow {
    margin: 0;
    color: var(--profilent-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-section__note {
    max-width: 520px;
    margin: 0;
    color: var(--profilent-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
}

.trust-section__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 105px;
    padding: 28px 25px 10px;
    border-right: 1px solid var(--profilent-border);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-item__number {
    flex: 0 0 auto;
    color: var(--profilent-primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.trust-item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--profilent-dark);
    font-size: 14px;
    line-height: 1.35;
}

.trust-item div span {
    display: block;
    color: var(--profilent-muted);
    font-size: 12px;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 850px) {

    .trust-section__intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-section__note {
        max-width: 650px;
        text-align: left;
    }

    .trust-section__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-item {
        padding: 25px 20px;
        border-bottom: 1px solid var(--profilent-border);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .trust-item:first-child {
        padding-left: 0;
    }

}


@media (max-width: 520px) {

    .trust-section {
        padding: 28px 0;
    }

    .trust-section__items {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:last-child {
        min-height: auto;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--profilent-border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

}