/*
 * Shared Template styles
 */

.rf-shared-page,
.rf-shared-page *,
.rf-shared-page *::before,
.rf-shared-page *::after {
    box-sizing: border-box;
}

.rf-shared-page {
    --rf_ha_in_teal: #007a7a;
    --rf_ha_in_teal_mid: #009a9a;
    --rf_ha_in_teal_soft: #d8f0ef;
    --rf_ha_in_cream: #f5f1ea;
    --rf_ha_in_parchment: #ede8df;
    --rf_ha_in_dark: #0d1515;
    --rf_ha_in_charcoal: #1c2828;
    --rf_ha_in_ink: #243030;
    --rf_ha_in_muted: #6d8282;
    --rf_ha_in_white: #ffffff;
    --rf_ha_in_shadow: 0 24px 80px rgba(13, 21, 21, 0.08);
    --rf_ha_in_radius_xl: 32px;
    --rf_ha_in_radius_lg: 24px;
    --rf_ha_in_radius_md: 18px;
    --rf_ha_in_serif: "Cormorant Garamond", serif;
    --rf_ha_in_sans: "Outfit", sans-serif;
    --rf_ha_in_container: 1240px;
    --teal: #007a7a;
    --teal-mid: #009a9a;
    --teal-faint: rgba(0, 122, 122, 0.07);
    --teal-rim: rgba(0, 122, 122, 0.13);
    --cream: #f7f4ee;
    --dark: #0d1515;
    --ink: #1c2c2c;
    --muted: #6d8888;
    --white: #ffffff;
    --serif: "Cormorant Garamond", serif;
    --sans: "Outfit", sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: linear-gradient(180deg, #f9f6f1 0%, #f5f1ea 100%);
    color: var(--rf_ha_in_ink);
    font-family: var(--rf_ha_in_sans);
    overflow-x: hidden;
}

.rf-shared-page img {
    display: block;
    max-width: 100%;
}

.rf-shared-page a {
    color: inherit;
    text-decoration: none;
}

.rf_ha_in_container {
    width: min(var(--rf_ha_in_container), calc(100% - 40px));
    margin: 0 auto;
}

.rf_ha_in_section {
    position: relative;
    padding: 96px 0;
}

.rf_ha_in_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #00a896;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.rf_ha_in_eyebrow::before {
    content: "\2756";
    font-size: 1rem;
}

.rf_ha_in_eyebrow_light {
    color: #7be0dc;
}

.rf_ha_in_section_title {
    margin: 0 0 20px;
    color: #1a202c;
    font-family: var(--rf_ha_in_sans);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
}

.rf_ha_in_section_copy {
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.rf_ha_in_section_title_light {
    color: #ffffff;
}

.rf_ha_in_section_copy_light {
    color: rgba(255, 255, 255, 0.72);
}

.rf_ha_in_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.rf_ha_in_btn_primary {
    background: #00a896;
    color: #ffffff;
}

.rf_ha_in_btn_primary:hover,
.rf_ha_in_btn_primary:focus-visible {
    background: #008f7f;
    transform: translateY(-2px);
}

.rf_ha_in_btn_secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.rf_ha_in_btn_secondary:hover,
.rf_ha_in_btn_secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.rf_ha_in_btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #022b2b;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.rf_ha_in_btn_icon svg {
    width: 16px;
    height: 16px;
}

.rf_ha_in_btn:hover .rf_ha_in_btn_icon,
.rf_ha_in_btn:focus-visible .rf_ha_in_btn_icon {
    transform: rotate(45deg);
}

.rf_ha_in_pills_section {
    padding: 28px 0 12px;
}

.rf_ha_in_pills_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.rf_ha_in_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid rgba(0, 122, 122, 0.1);
    border-radius: 999px;
    background: #007a7a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 122, 122, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.rf_ha_in_pill,
.rf_ha_in_pill:visited,
.rf_ha_in_pill:link,
.rf_ha_in_pill:hover,
.rf_ha_in_pill:focus,
.rf_ha_in_pill:focus-visible,
.rf_ha_in_pill:active {
    color: #ffffff;
}

.rf_ha_in_pill:hover,
.rf_ha_in_pill:focus-visible {
    background: #10b3b3;
    border-color: #10b3b3;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 122, 122, 0.28);
}

.rf_ha_in_pill:focus-visible {
    outline: 2px solid rgba(0, 122, 122, 0.18);
    outline-offset: 2px;
}

.rf_ha_in_hero {
    padding: 30px 0 40px;
}

.rf_ha_in_hero_grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.rf_ha_in_hero_copy,
.rf_ha_in_hero_media {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--rf_ha_in_shadow);
}

.rf_ha_in_hero_copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px;
    background:
        radial-gradient(circle at top left, rgba(0, 154, 154, 0.2), transparent 35%),
        linear-gradient(145deg, #0d1515 0%, #142020 55%, #0f1717 100%);
    color: #ffffff;
}

.rf_ha_in_hero_title {
    max-width: 620px;
    margin-bottom: 20px;
    font-family: var(--rf_ha_in_serif);
    font-size: clamp(3rem, 6vw, 5.3rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.94;
}

.rf_ha_in_hero_title em {
    color: #7be0dc;
    font-style: italic;
    font-weight: 400;
}

.rf_ha_in_hero_sub {
    max-width: 540px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    line-height: 1.6;
}

.rf_ha_in_hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.rf_ha_in_hero_highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.rf_ha_in_highlight_card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.rf_ha_in_highlight_card strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: var(--rf_ha_in_serif);
    font-size: 28px;
    font-weight: 500;
}

.rf_ha_in_highlight_card span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

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

.rf_ha_in_hero_panel {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: min(470px, calc(100% - 56px));
    min-height: 250px;
    padding: 28px 28px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.96)),
        radial-gradient(circle at 82% 22%, rgba(255, 188, 150, 0.16), transparent 24%),
        radial-gradient(circle at 18% 24%, rgba(125, 226, 220, 0.12), transparent 22%);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 30px;
    box-shadow: 0 20px 44px rgba(13, 21, 21, 0.16);
    backdrop-filter: blur(16px);
}

.rf_ha_in_hero_panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 72% 24%, rgba(171, 150, 245, 0.12), transparent 16%),
        radial-gradient(circle at 58% 72%, rgba(255, 225, 118, 0.12), transparent 14%);
    pointer-events: none;
}

.rf_ha_in_hero_panel::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 28px;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00a896, rgba(0, 168, 150, 0.2));
    pointer-events: none;
}

.rf_ha_in_hero_panel_copy,
.rf_ha_in_chip_stack {
    position: relative;
    z-index: 1;
}

.rf_ha_in_hero_panel_copy {
    padding-top: 12px;
}

.rf_ha_in_hero_panel h3 {
    margin-bottom: 12px;
    color: #132222;
    font-family: var(--rf_ha_in_sans);
    font-size: clamp(1.9rem, 3vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.rf_ha_in_hero_panel p {
    margin: 0;
    color: rgba(28, 40, 40, 0.82);
    font-size: 0.98rem;
    line-height: 1.72;
}

.rf_ha_in_chip_stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 4px;
}

.rf_ha_in_chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 16px;
    border: 1px solid rgba(0, 122, 122, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #007a7a;
    box-shadow: 0 8px 18px rgba(0, 122, 122, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.why {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #f9f6f1 0%, #f5f1ea 100%);
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='32,5 60,56 4,56' fill='none' stroke='%23007a7a' stroke-width='0.4' opacity='0.10'/%3E%3C/svg%3E");
    background-size: 64px 64px;
}

.why::after {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    z-index: 0;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 122, 122, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why__wrap {
    position: relative;
    z-index: 1;
    width: min(var(--rf_ha_in_container), calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.why__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: #00a896;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
    font-family: var(--rf_ha_in_sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.why__eyebrow::before {
    content: "\2756";
    font-size: 1rem;
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px auto;
    gap: 12px;
}

.wc {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 122, 122, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(13, 21, 21, 0.04);
    transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.38s;
}

.wc:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 122, 0.2);
    box-shadow: 0 22px 55px rgba(13, 21, 21, 0.09);
}

.wc--img {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #000000;
}

.wc--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.8);
    transition: transform 0.7s var(--ease), filter 0.5s;
}

.wc--img:hover img {
    transform: scale(1.04);
    filter: saturate(0.95) brightness(0.88);
}

.wc--img__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 0, 0, 0.02) 0%, rgba(13, 21, 21, 0.6) 100%);
}

.wc--img__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
    text-align: center;
    backdrop-filter: blur(14px);
}

.wc--img__badge strong {
    display: block;
    color: #ffffff;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.wc--img__badge span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.wc--img__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 26px 24px;
}

.wc--img__tag {
    margin-bottom: 6px;
    color: rgba(160, 220, 220, 0.85);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wc--img__title {
    color: #ffffff;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
}

.wc--stat {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px 24px;
    isolation: isolate;
    background:
        radial-gradient(circle at top right, rgba(123, 224, 220, 0.22), transparent 34%),
        linear-gradient(145deg, #0f1c1c 0%, #132626 56%, #0d1717 100%);
}

.wc--stat::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 24%, rgba(0, 168, 150, 0.24), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    border-radius: inherit;
}

.wc--stat::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(4, 16, 16, 0.1), rgba(4, 16, 16, 0.28));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.wc--stat > * {
    position: relative;
    z-index: 1;
}

.wc--stat::selection {
    background: rgba(123, 224, 220, 0.25);
    color: inherit;
}

.wc--stat .wc--stat__label,
.wc--stat .wc--stat__num,
.wc--stat .wc--stat__desc,
.wc--stat .wc--stat__badge {
    position: relative;
    z-index: 1;
}

.wc--stat::before,
.wc--stat::after {
    pointer-events: none;
}

.wc--stat::before,
.wc--stat::after,
.wc--stat > * {
    border-radius: inherit;
}

.wc--stat__top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc--stat__label {
    margin-bottom: 0;
    color: rgba(123, 224, 220, 0.92);
    font-family: var(--rf_ha_in_sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wc--stat__num {
    color: #7be0dc;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    font-family: var(--rf_ha_in_serif);
    font-size: clamp(3.4rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.82;
}

.wc--stat__num sup {
    color: rgba(123, 224, 220, 0.78);
    font-size: 1.4rem;
    font-weight: 400;
    vertical-align: super;
}

.wc--stat__desc {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--rf_ha_in_sans);
    font-size: 0.94rem;
    line-height: 1.68;
}

.wc--stat__desc strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: var(--rf_ha_in_sans);
    font-size: 1rem;
    font-weight: 600;
}

.wc--stat__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(123, 224, 220, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.wc--stat__bottom::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(123, 224, 220, 0.16);
    border-radius: 16px;
    animation: rf-shared-spin 22s linear infinite;
    pointer-events: none;
}

.wc--stat__badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(123, 224, 220, 0.12);
    color: #b9f0ed;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wc--feat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px;
}

.wc--feat__wm {
    position: absolute;
    top: -8px;
    right: 2px;
    color: rgba(0, 122, 122, 0.045);
    font-family: var(--serif);
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s, transform 0.4s var(--ease);
    user-select: none;
}

.wc:hover .wc--feat__wm {
    color: rgba(0, 122, 122, 0.08);
    transform: scale(1.06) translateY(-3px);
}

.wc--feat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--teal-rim);
    border-radius: 12px;
    background: var(--teal-faint);
    transition: background 0.3s, transform 0.3s;
}

.wc:hover .wc--feat__icon {
    background: var(--teal);
    transform: scale(1.08);
}

.wc--feat__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--teal);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: stroke 0.3s;
}

.wc:hover .wc--feat__icon svg {
    stroke: #ffffff;
}

.wc--feat__sub {
    margin-bottom: 5px;
    color: var(--teal);
    opacity: 1;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s;
}

.wc:hover .wc--feat__sub {
    opacity: 1;
    transform: translateY(0);
}

.wc--feat__title {
    margin-bottom: 6px;
    color: var(--ink);
    font-family: var(--rf_ha_in_sans);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc--feat__desc {
    color: #64748b;
    font-family: var(--rf_ha_in_sans);
    font-size: 1rem;
    line-height: 1.65;
}

.wc--wide {
    grid-column: 2 / 4;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.wc--wide__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    padding: 26px;
    border-right: 1px solid rgba(0, 122, 122, 0.08);
}

.wc--wide__right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 26px;
    background: var(--teal);
}

.wc--wide__right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='26,4 48,46 4,46' fill='none' stroke='%23ffffff' stroke-width='0.45' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 52px 52px;
    pointer-events: none;
}

.wc--wide__label {
    margin-bottom: 10px;
    color: var(--teal);
    font-family: var(--rf_ha_in_sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wc--wide__heading {
    margin-bottom: 0;
    color: var(--ink);
    font-family: var(--rf_ha_in_sans);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.35;
}

.wc--wide__accent {
    color: var(--teal);
    font-family: var(--serif);
    font-style: italic;
}

.wc--wide__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.wc--wide__pill {
    padding: 8px 14px;
    border: 1px solid rgba(0, 122, 122, 0.18);
    border-radius: 999px;
    background: #f3fbfb;
    color: #007a7a;
    cursor: default;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.wc--wide__pill:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #ffffff;
    transform: translateY(-2px);
}

.wc--wide__cta_label {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--rf_ha_in_sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wc--wide__cta_title {
    margin: 7px 0 0;
    color: #ffffff;
    font-family: var(--rf_ha_in_sans);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.wc--wide__cta_link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: var(--rf_ha_in_sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: gap 0.3s, transform 0.3s ease;
}

.wc--wide__cta_link:hover {
    gap: 15px;
}

.wc--wide__cta_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: background 0.3s, transform 0.3s;
}

.wc--wide__cta_arrow svg {
    width: 16px;
    height: 16px;
}

.wc--wide__cta_link:hover .wc--wide__cta_arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

.wc--delay-1 {
    transition-delay: 0.08s;
}

.wc--delay-2 {
    transition-delay: 0.16s;
}

.wc--delay-3 {
    transition-delay: 0.24s;
}

.rf_ha_in_services_wrap {
    overflow: hidden;
    background: linear-gradient(180deg, var(--rf_ha_in_parchment), #f7f4ee);
}

.rf_ha_in_section_head {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.rf_ha_in_services_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rf_ha_in_service_card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(0, 122, 122, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 40px rgba(13, 21, 21, 0.05);
    transition: all 0.28s ease;
}

.rf_ha_in_service_card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 122, 0.22);
    box-shadow: 0 24px 60px rgba(13, 21, 21, 0.09);
}

.rf_ha_in_service_icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(0, 122, 122, 0.12), rgba(255, 255, 255, 0.95));
    color: var(--rf_ha_in_teal);
    font-size: 24px;
}

.rf_ha_in_service_icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rf_ha_in_service_card h3 {
    margin-bottom: 10px;
    color: var(--rf_ha_in_dark);
    font-size: 19px;
}

.rf_ha_in_service_card p {
    margin-bottom: 16px;
    color: var(--rf_ha_in_muted);
    font-size: 14px;
    line-height: 1.75;
}

.rf_ha_in_service_link {
    margin-top: auto;
    color: var(--rf_ha_in_teal);
    font-size: 13px;
    font-weight: 600;
}

.rf_ha_in_pricing_box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--rf_ha_in_dark), #162323);
    color: #ffffff;
    box-shadow: 0 26px 80px rgba(13, 21, 21, 0.16);
}

.rf_ha_in_pricing_box::before,
.rf_ha_in_pricing_box::after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: rgba(0, 154, 154, 0.08);
}

.rf_ha_in_pricing_box::before {
    top: -70px;
    right: -60px;
    width: 240px;
    height: 240px;
}

.rf_ha_in_pricing_box::after {
    bottom: -60px;
    left: -30px;
    width: 180px;
    height: 180px;
}

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

.rf_ha_in_pricing_copy h2 {
    margin-bottom: 20px;
}

.rf_ha_in_pricing_copy p {
    max-width: 640px;
}

.rf_ha_in_price_pill {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 24px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.rf_ha_in_price_pill strong {
    color: #ffffff;
    font-family: var(--rf_ha_in_serif);
    font-size: 32px;
    font-weight: 500;
}

.rf_ha_in_testimonial_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rf_ha_in_testimonial_card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(0, 122, 122, 0.1);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 50px rgba(13, 21, 21, 0.05);
}

.rf_ha_in_testimonial_card::before {
    content: "\201c";
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(0, 122, 122, 0.08);
    font-family: var(--rf_ha_in_serif);
    font-size: 90px;
    line-height: 1;
}

.rf_ha_in_stars {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
    color: var(--rf_ha_in_teal);
    font-size: 16px;
}

.rf_ha_in_testimonial_card p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: var(--rf_ha_in_ink);
    font-size: 15px;
    line-height: 1.9;
}

.rf_ha_in_testimonial_author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rf_ha_in_author_avatar {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--rf_ha_in_teal_soft), #ffffff);
    color: var(--rf_ha_in_teal);
    font-weight: 700;
}

.rf_ha_in_testimonial_author strong {
    display: block;
    margin-bottom: 4px;
    color: var(--rf_ha_in_dark);
    font-size: 15px;
}

.rf_ha_in_testimonial_author span {
    color: var(--rf_ha_in_muted);
    font-size: 13px;
}

.rf_ha_in_related_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rf_ha_in_related_card {
    overflow: hidden;
    border: 1px solid rgba(0, 122, 122, 0.1);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(13, 21, 21, 0.06);
    transition: all 0.28s ease;
}

.rf_ha_in_related_card:hover {
    transform: translateY(-8px);
}

.rf_ha_in_related_media {
    height: 220px;
    overflow: hidden;
}

.rf_ha_in_related_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rf_ha_in_related_card:hover .rf_ha_in_related_media img {
    transform: scale(1.06);
}

.rf_ha_in_related_body {
    padding: 24px;
}

.rf_ha_in_related_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--rf_ha_in_teal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rf_ha_in_related_body h3 {
    margin-bottom: 12px;
    color: var(--rf_ha_in_dark);
    font-size: 22px;
}

.rf_ha_in_related_body p {
    margin-bottom: 18px;
    color: var(--rf_ha_in_muted);
    font-size: 14px;
    line-height: 1.8;
}

.rf_ha_in_footer_cta {
    display: flex;
    justify-content: center;
    padding-top: 36px;
}

.sr {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.sr.in {
    opacity: 1;
    transform: none;
}

@keyframes rf-shared-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .rf_ha_in_hero_grid,
    .rf_ha_in_section_head,
    .rf_ha_in_pricing_box {
        grid-template-columns: 1fr;
    }

    .rf_ha_in_services_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rf_ha_in_testimonial_grid,
    .rf_ha_in_related_grid {
        grid-template-columns: 1fr;
    }

    .rf_ha_in_hero_copy,
    .rf_ha_in_hero_media {
        min-height: auto;
    }
}

@media (max-width: 960px) {
    .why__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 240px auto;
    }

    .wc--img {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 280px;
    }

    .wc--stat {
        grid-column: 1;
        grid-row: 2;
    }

    .wc--feat {
        grid-column: 2;
        grid-row: 2;
    }

    .wc--wide {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

@media (max-width: 840px) {
    .rf_ha_in_hero_copy,
    .rf_ha_in_pricing_box,
    .rf_ha_in_related_body,
    .rf_ha_in_testimonial_card {
        padding: 26px;
    }

    .rf_ha_in_hero_highlights,
    .rf_ha_in_services_grid {
        grid-template-columns: 1fr;
    }

    .rf_ha_in_hero_panel {
        position: static;
        margin: 18px;
        width: auto;
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .rf_ha_in_container {
        width: min(var(--rf_ha_in_container), calc(100% - 24px));
    }

    .rf_ha_in_pills_section {
        padding: 20px 0 10px;
    }

    .rf_ha_in_pills_wrap {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 10px;
        scroll-snap-type: x proximity;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .rf_ha_in_pills_wrap::-webkit-scrollbar {
        display: none;
    }

    .rf_ha_in_pill {
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .why {
        padding: 70px 0;
    }

    .why__wrap {
        width: min(var(--rf_ha_in_container), calc(100% - 24px));
    }

    .why__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto auto auto;
        gap: 10px;
    }

    .wc--img {
        grid-column: 1;
        grid-row: 1;
    }

    .wc--stat {
        grid-column: 1;
        grid-row: 2;
    }

    .wc--feat {
        grid-column: 1;
        grid-row: 3;
    }

    .wc--wide {
        grid-column: 1;
        grid-row: 4;
        grid-template-columns: 1fr;
        height: auto;
    }

    .wc--wide__left {
        gap: 12px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 122, 122, 0.08);
    }

    .wc--stat__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
