/* ===== CSS VARIABLES ===== */
:root {
    --font-title: 'Georgia', serif;
    --font-body: 'Applied Sans Pro', 'Inter', sans-serif;
    --font-handwriting: 'Patrick Hand', 'Comic Neue', cursive, sans-serif;

    --cream: #f5f0e6;
    --dark-navy: #1c1c2e;
    --orange: #e85a2b;
    --yellow-circ: #f5d572;
    --mint-circ: #8dd5b5;
    --purple-card: #c9b8f2;
    --light-blue: #7ecfe8;
    --text-mid: #5a5a72;
    --grid-line: rgba(160, 148, 125, 0.20);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--dark-navy);
    background-color: var(--cream);
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

p,
span,
a,
input,
button {
    font-family: var(--font-body);
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    background-color: var(--cream);
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 44px 44px;
}

/* ===================================================
   NAVBAR
=================================================== */
.site-navbar {
    padding: 20px 0 10px;
    background: transparent;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 10px;
}

.nav-logo-svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.nav-brand-text .brand-title {
    display: block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 18.5px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.brand-trace {
    color: #1c1c2e;
}

.brand-aid {
    color: #ff5e28;
}

.nav-brand-text .brand-sub {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 8px;
    letter-spacing: 0.16em;
    color: #888899;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 1px;
}

.site-nav {
    gap: 4px !important;
}

.site-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13.5px;
    color: #1c1c2e;
    padding: 6px 12px;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.site-nav .nav-link:hover {
    color: #ff5e28;
}

.site-nav .nav-link.active {
    color: #1c1c2e;
    font-weight: 700;
}

.site-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    right: 12px;
    height: 2.5px;
    background-color: #ff5e28;
    border-radius: 2px;
}

/* ===== TOGGLED MOBILE MENU (SILKY SMOOTH GLITCH-FREE COLLAPSE) ===== */
#mobileMenu {
    overflow: hidden;
}

.mobile-menu-inner {
    background-color: #ffffff !important;
    border: 2.5px solid var(--dark-navy) !important;
    border-radius: 20px !important;
    padding: 18px 24px !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
    box-shadow: 6px 6px 0 var(--dark-navy) !important;
}

#mobileMenu .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-navy);
    padding: 10px 0;
    transition: color 0.2s;
}

#mobileMenu .nav-link:hover,
#mobileMenu .nav-link.active {
    color: #ff5e28;
}

/* Search Box */
.nav-search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid #d5d0c5;
    border-radius: 100px;
    padding: 6px 12px;
    width: 155px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.nav-search-box:focus-within {
    border-color: #1c1c2e;
    background: #fff;
    width: 155px; /* Fixed width - does not expand on click */
}

.nav-search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #1c1c2e;
    width: 100%;
}

.nav-search-box input::placeholder {
    color: #9999a0;
}

/* Right Buttons */
.nav-actions-wrap {
    gap: 8px !important;
    flex-shrink: 0;
}

.btn-check-funds {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ff5e28;
    color: #fff !important;
    border: none;
    border-radius: 100px;
    padding: 6px 18px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-check-funds:hover {
    background-color: #e04b19;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 94, 40, 0.3);
}

.btn-phone-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid #1c1c2e;
    border-radius: 50%;
    background: transparent;
    color: #1c1c2e;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.btn-phone-circle:hover {
    background-color: #1c1c2e;
    color: #fff;
    transform: scale(1.04);
}

.btn-phone-circle:hover svg {
    stroke: #fff;
}

/* BBB Seal Nav Logo */
.nav-bbb-seal {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: 2px;
}

.nav-bbb-seal img {
    height: 38px;
    width: auto;
    display: block;
    border: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-bbb-seal:hover img {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
    padding-top: 56px;
    padding-bottom: 0;
}

/* ---- LEFT COLUMN ---- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--dark-navy);
    border-radius: 100px;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 28px;
}

.badge-dot {
    width: 9px;
    height: 9px;
    background-color: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-heading {
    font-family: 'Georgia', serif;
    font-size: clamp(66px, 7.5vw, 92px);
    font-weight: 500;
    line-height: 1.04;
    color: var(--dark-navy);
    margin-bottom: 0;
}

/* "find it." with top and bottom orange bars framing the text */
.heading-find-wrap {
    font-family: 'Georgia', serif;
    display: inline-block;
    position: relative;
    padding-top: 14px;
    padding-bottom: 12px;
    margin-top: 4px;
}

/* Top Orange Line (directly above 'find it.') */
.heading-find-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 100%;
    height: 6px;
    background-color: #ff5e28;
    border-radius: 2px;
}

/* Bottom Orange Line (directly below 'find it.') */
.heading-find-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 6px;
    background-color: #ff5e28;
    border-radius: 2px;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.55;
    margin-top: 24px;
    margin-bottom: 10px;
}

.hero-desc + .hero-desc {
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-desc:last-of-type {
    margin-bottom: 28px;
}

.hero-btns-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5e28;
    color: var(--dark-navy);
    border: 2.5px solid var(--dark-navy);
    border-radius: 100px;
    padding: 18px 45px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s;
    line-height: 1.2;
}

.btn-primary-hero:hover {
    background-color: #e04b19;
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--dark-navy);
    border: 2.5px solid var(--dark-navy);
    border-radius: 100px;
    padding: 18px 45px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s;
    line-height: 1.2;
}

.btn-secondary-hero:hover {
    background-color: var(--dark-navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll Indicator Button */
.scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #b8b0a0;
    border-radius: 50%;
    margin-top: 40px;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.25s, transform 0.25s;
    text-decoration: none;
}

.scroll-btn:hover {
    border-color: var(--dark-navy);
    transform: translateY(3px);
}

.scroll-btn svg {
    animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ---- RIGHT COLUMN VISUAL ---- */
.hero-visual-wrap {
    position: relative;
    height: 910px;
}

/* Decorative overlapping circles */
.deco-circle {
    position: absolute;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
}

.deco-circle:hover {
    animation: circleFloat 0.9s ease-in-out infinite alternate;
}

@keyframes circleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.circle-yellow {
    width: 212px;
    height: auto;
    top: 10px;
    left: 45px;
}

.circle-mint {
    width: 185px;
    height: auto;
    top: 25px;
    left: 190px;
}

/* TraceAid At A Glance Card (Tall Mobile Frame matching Image 2) */
.recovery-card {
    position: absolute;
    top: 140px;
    left: 45px;
    width: 345px;
    height: auto;
    background: #ffffff;
    border: 3px solid var(--dark-navy);
    border-radius: 38px;
    padding: 24px 20px 18px;
    box-shadow: 7px 7px 0 var(--dark-navy);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.glance-header {
    margin-bottom: 16px;
}

.glance-title {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--dark-navy);
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

.glance-title-sub-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.glance-title-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--dark-navy);
    text-transform: uppercase;
}

.glance-title-line {
    display: block;
    width: 46px;
    height: 3px;
    background-color: #55c793;
    border-radius: 2px;
    margin-top: 4px;
}

/* Glance List Items */
.glance-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.glance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 13px;
    border-bottom: 1px solid #e5e7eb;
}

.glance-item:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

/* Icon Badges */
.glance-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glance-icon-yellow {
    background-color: #fff4c2;
}

.glance-icon-val {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #166534;
}

.glance-icon-mint {
    background-color: #c7f3d6;
}

.glance-icon-blue {
    background-color: #dbeafe;
}

.bbb-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bbb-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 8px;
    color: #0b3c5d;
    margin-top: 1px;
    letter-spacing: -0.2px;
}

.glance-icon-purple {
    background-color: #ebdcfc;
}

/* Glance Content Body */
.glance-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.glance-main-val {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.glance-green-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #166534;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.glance-bold-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--dark-navy);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.glance-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.35;
    margin: 0;
}

/* Promise Box at Bottom */
.glance-promise-box {
    background-color: #effcf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 16px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.promise-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.promise-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-info {
    display: flex;
    flex-direction: column;
}

.promise-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #166534;
    text-transform: uppercase;
}

.promise-our {
    position: relative;
    display: inline-block;
}

.promise-our::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.8px;
    background-color: #166534;
    border-radius: 1px;
}

.promise-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-top: 1px;
    line-height: 1.2;
}

/* Bottom Elements Area (Underneath Mobile Card) */

/* Gauge / Meter Circle Icon */
.gauge-wrap {
    position: absolute;
    top: 780px;
    left: 172px;
    width: 90px;
    height: 90px;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gauge-wrap:hover {
    transform: scale(1.08);
}

.gauge-outer {
    width: 90px;
    height: 90px;
    border: 2px dashed var(--dark-navy);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.gauge-needle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 2;
    transform-origin: 50% 50%;
    animation: clockNeedleRotate 6s linear infinite;
}

@keyframes clockNeedleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gauge-dot-inner {
    width: 32px;
    height: 32px;
    background-color: #7ecfe8;
    border: 2.5px solid var(--dark-navy);
    border-radius: 50%;
    z-index: 1;
}

/* "01 We locate" Purple Card */
.we-locate-card {
    position: absolute;
    top: 770px;
    left: 215px;
    width: 145px;
    height: 145px;
    background-color: var(--purple-card);
    border: 3px solid var(--dark-navy);
    border-radius: 28px;
    box-shadow: 6px 6px 0 var(--dark-navy);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

.wl-num {
    font-family: 'Georgia', serif;
    font-size: 38px;
    color: var(--dark-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.wl-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-navy);
}

/* ===================================================
   MARQUEE TICKER
=================================================== */
.marquee-section {
    background-color: var(--dark-navy);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 8px;
}

.marquee-sep {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 6px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================================
   WHY TRACEAID SECTION
=================================================== */
.why-section {
    background-color: var(--cream);
    padding: 100px 0 110px;
}

/* Top row: left heading + right paragraph */
.why-top-row {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 72px;
}

.why-left {
    flex: 0 0 auto;
    max-width: 480px;
}

.why-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888899;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-heading {
    font-family: 'Georgia', serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--dark-navy);
    letter-spacing: -1.5px;
    margin: 0;
}

.why-right {
    flex: 1;
    padding-bottom: 8px;
}

.why-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.7;
    /* max-width: 520px; */
    margin: 0;
}

/* Cards row */
.why-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.why-card {
    border: 3px solid var(--dark-navy);
    border-radius: 28px;
    padding: 36px 32px 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 6px 6px 0 var(--dark-navy);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--dark-navy);
}

.why-card--blue {
    background-color: #7ecfe8;
}

.why-card--mint {
    background-color: #a8e6c1;
}

.why-card--purple {
    background-color: #c9b8f2;
}

/* Bare icon at top-left, no box */
.why-card-icon {
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
}

.why-card-icon svg {
    display: block;
    width: 38px;
    height: 38px;
}

/* Title + description */
.why-card-body {
    margin-top: 0;
    padding-top: 0;
}

.why-card-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.why-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.6;
    margin: 0;
    opacity: 0.78;
}

/* ===================================================
   THE PROCESS SECTION
=================================================== */
.process-section {
    background-color: #ffffff;
    padding: 100px 0 110px;
}

/* Top row */
.process-top-row {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 48px;
}

.process-left {
    flex: 0 0 auto;
    max-width: 460px;
}

.process-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888899;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-heading {
    font-family: 'Georgia', serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--dark-navy);
    letter-spacing: -2px;
    margin: 0;
}

.process-right {
    flex: 1;
    padding-bottom: 10px;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.65;
    max-width: 420px;
    margin: 0;
}

/* Step cards row — 4 equal columns */
.process-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.process-step-card {
    /* border: 3px solid var(--dark-navy); */
    border-radius: 24px;
    padding: 28px 24px 28px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
}

/* Step card colors */
#ps-1 {
    background-color: #e85a2b;
}

#ps-2 {
    background-color: #f5d97e;
}

#ps-3 {
    background-color: #b8d8f0;
}

#ps-4 {
    background-color: #a8e6c1;
}

.process-step-card:hover:not(.ps-active) {
    transform: translate(-2px, -2px);
    /* box-shadow: 5px 5px 0 var(--dark-navy); */
}
/* 
.process-step-card.ps-active {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--dark-navy);
    outline: none;
} */

.ps-num {
    font-family: 'Georgia', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1;
    letter-spacing: -1px;
}

.ps-label {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-navy);
    letter-spacing: 0.01em;
}

/* Detail Panel — dark navy */
.process-detail-panel {
    background-color: var(--dark-navy);
    border-radius: 24px;
    padding: 48px 52px 52px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 260px;
}

.pd-inner {
    flex: 1;
}

.pd-step-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pd-heading {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.pd-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

/* Down arrow button */
.pd-next-btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    align-self: flex-end;
}

.pd-next-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(3px);
}

/* ===================================================
   RESPONSIVE (SHOW ALL ELEMENTS ON ALL SCREENS)
=================================================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 36px;
    }

    .hero-heading {
        font-size: clamp(52px, 11vw, 76px);
    }

    .hero-desc {
        max-width: 100%;
        font-size: 15.5px;
    }

    .hero-visual-wrap {
        height: 860px;
        margin-top: 40px;
        width: 100%;
        max-width: 370px;
        margin-left: auto;
        margin-right: auto;
    }

    .circle-yellow {
        width: 190px;
        height: auto;
        top: 10px;
        left: 30px;
    }

    .circle-mint {
        width: 165px;
        height: auto;
        top: 22px;
        left: 165px;
    }

    .recovery-card {
        top: 95px;
        left: 15px;
        width: 335px;
        height: auto;
        padding: 20px 16px 16px;
        border-radius: 34px;
    }

    .gauge-wrap {
        top: 695px;
        left: 142px;
        width: 80px;
        height: 80px;
    }

    .gauge-outer {
        width: 80px;
        height: 80px;
    }

    .gauge-dot-inner {
        width: 28px;
        height: 28px;
    }

    .we-locate-card {
        top: 695px;
        left: 175px;
        width: 130px;
        height: 130px;
        padding: 16px 10px;
    }

    .wl-num {
        font-size: 34px;
    }

    /* Why TraceAid – tablet & responsive */
    .why-section {
        padding: 60px 0 70px;
    }

    .why-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .why-left {
        width: 100%;
        max-width: 100%;
    }

    .why-right {
        width: 100%;
        max-width: 100%;
        padding-bottom: 0;
    }

    .why-label {
        font-size: 13px;
        margin-bottom: 12px;
        text-align: left;
    }

    .why-heading {
        font-size: clamp(36px, 6.5vw, 48px);
        line-height: 1.1;
        letter-spacing: -1px;
        text-align: left;
    }

    .why-desc {
        font-size: 16px;
        /* max-width: 100%; */
        text-align: left;
    }

    .why-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        min-height: 340px;
        padding: 28px 24px 34px;
    }

    .why-card-title {
        font-size: 30px;
    }

    /* Process – tablet */
    .process-section {
        padding: 70px 0 80px;
    }

    .process-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }

    .process-left {
        max-width: 100%;
    }

    .process-heading {
        font-size: clamp(40px, 7vw, 54px);
        letter-spacing: -1px;
    }

    .process-desc {
        font-size: 16px;
        max-width: 100%;
    }

    .process-steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .process-step-card {
        min-height: 180px;
        padding: 24px 20px;
    }

    .ps-num {
        font-size: 34px;
    }

    .pd-heading {
        font-size: 32px;
    }

    .process-detail-panel {
        padding: 36px 36px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .pd-next-btn {
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 16px;
        margin-bottom: 20px;
    }

    .badge-dot {
        width: 8px;
        height: 8px;
    }

    .hero-heading {
        font-size: clamp(40px, 10vw, 54px);
    }

    .hero-desc {
        font-size: 14.5px;
        line-height: 1.5;
        margin-top: 18px;
        margin-bottom: 22px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        font-size: 14px;
        padding: 12px 24px;
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-visual-wrap {
        height: 715px;
        margin-top: 30px;
        max-width: 320px;
    }

    .circle-yellow {
        width: 155px;
        height: auto;
        top: 5px;
        left: 20px;
    }

    .circle-mint {
        width: 140px;
        height: auto;
        top: 15px;
        left: 135px;
    }

    .recovery-card {
        top: 75px;
        left: 5px;
        width: 300px;
        height: auto;
        padding: 16px 12px 12px;
        border-radius: 28px;
    }

    .glance-header {
        margin-bottom: 12px;
    }

    .glance-title, .glance-title-sub {
        font-size: 12.5px;
    }

    .glance-list {
        gap: 10px;
    }

    .glance-item {
        gap: 10px;
        padding-bottom: 10px;
    }

    .glance-icon-circle {
        width: 40px;
        height: 40px;
    }

    .glance-icon-val {
        font-size: 17px;
    }

    .glance-main-val {
        font-size: 20px;
    }

    .glance-green-tag {
        font-size: 9.5px;
    }

    .glance-bold-title {
        font-size: 12.5px;
    }

    .glance-desc {
        font-size: 11px;
    }

    .glance-promise-box {
        padding: 8px 10px;
        gap: 10px;
        margin-top: 10px;
    }

    .promise-icon-circle {
        width: 30px;
        height: 30px;
    }

    .promise-tag {
        font-size: 9px;
    }

    .promise-text {
        font-size: 12px;
    }

    .gauge-wrap {
        top: 600px;
        left: 124px;
        width: 72px;
        height: 72px;
    }

    .gauge-outer {
        width: 72px;
        height: 72px;
    }

    .gauge-dot-inner {
        width: 24px;
        height: 24px;
    }

    .we-locate-card {
        top: 580px;
        left: 140px;
        width: 115px;
        height: 115px;
        border-radius: 22px;
        padding: 12px 8px;
    }

    .wl-num {
        font-size: 30px;
    }

    .wl-text {
        font-size: 12.5px;
    }

    /* Why TraceAid – mobile */
    .why-section {
        padding: 44px 0 54px;
    }

    .why-heading {
        font-size: clamp(30px, 8.5vw, 38px);
        letter-spacing: -0.5px;
    }

    .why-desc {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .why-cards-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        min-height: 260px;
        padding: 24px 20px 28px;
        border-radius: 22px;
    }

    .why-card-icon {
        margin-bottom: 40px;
    }

    .why-card-title {
        font-size: 26px;
    }

    .why-card-desc {
        font-size: 14px;
    }

    /* Process – mobile */
    .process-section {
        padding: 50px 0 60px;
    }

    .process-heading {
        font-size: clamp(34px, 9vw, 42px);
        letter-spacing: -0.5px;
    }

    .process-steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }

    .process-step-card {
        min-height: 155px;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .ps-num {
        font-size: 28px;
    }

    .ps-label {
        font-size: 15px;
    }

    .process-detail-panel {
        padding: 28px 24px 32px;
        border-radius: 18px;
        min-height: auto;
    }

    .pd-heading {
        font-size: 26px;
    }

    .pd-desc {
        font-size: 14.5px;
    }
}


/* ===================================================
   STATES PAGE STYLES
=================================================== */
.states-main-section {
    position: relative;
    padding: 30px 0 90px;
    /* No overflow:hidden — so circles can peek in from edges */
}

.states-top-circle-yellow {
    position: absolute;
    top: 20px;
    left: -150px;
    width: 220px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.states-top-circle-mint {
    position: absolute;
    top: 20px;
    right: -130px;
    width: 190px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

/* Responsive Scaling for Background Decorative Circles Across Screen Sizes */
@media (max-width: 1199.98px) {
    .states-top-circle-yellow {
        top: 15px;
        left: -120px;
        width: 180px;
    }

    .states-top-circle-mint {
        top: 15px;
        right: -105px;
        width: 155px;
    }
}

@media (max-width: 991.98px) {
    .states-top-circle-yellow {
        top: 10px;
        left: -95px;
        width: 145px;
    }

    .states-top-circle-mint {
        top: 10px;
        right: -85px;
        width: 125px;
    }
}

@media (max-width: 575.98px) {
    .states-top-circle-yellow {
        top: 5px;
        left: -75px;
        width: 115px;
    }

    .states-top-circle-mint {
        top: 5px;
        right: -65px;
        width: 100px;
    }
}

.states-header-block {
    position: relative;
    margin-bottom: 38px;
    z-index: 2;
}

@media (max-width: 1199.98px) {
    .states-header-block {
        padding-top: 110px;
    }
}

@media (max-width: 991.98px) {
    .states-header-block {
        padding-top: 95px;
    }
}

@media (max-width: 575.98px) {
    .states-header-block {
        padding-top: 85px;
    }
}

.states-heading {
    font-family: 'Georgia', serif;
    font-size: 74px;
    font-weight: 500;
    line-height: 1.05;
    color: var(--dark-navy);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

/* Orange Underline Bar under "states" using ::after pseudo element */
.heading-states-wrap {
    display: inline-block;
    position: relative;
}

.heading-states-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4.5px;
    background-color: #e85a2b;
    border-radius: 2px;
}

/* Graphic positioning - Dotted curve & Magnifying glass next to "We work in" */
.states-search-graphic {
    position: absolute;
    top: -12px;
    left: 400px;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.states-magnifier-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-bottom: 4px;
}

.states-search-img {
    width: 62px;
    height: auto;
    display: block;
}

.states-subdesc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .states-search-graphic {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .states-heading {
        font-size: 42px;
    }

    .states-heading-line {
        width: 85px;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .states-search-graphic {
        display: none;
    }
}

/* "Select a State" Section Title */
.states-select-title-wrap {
    margin-bottom: 22px;
}

.states-select-title {
    display: inline-block;
    position: relative;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0;
    padding-bottom: 6px;
}

.states-select-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 95px;
    height: 3px;
    background-color: #e05a47;
}

/* 21 State Cards Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

@media (max-width: 1400px) {
    .states-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    .states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.state-card {
    background-color: #ffffff;
    border: 2.5px solid var(--dark-navy);
    border-radius: 20px;
    padding: 16px 10px 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 135px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 0 var(--dark-navy);
    border-color: var(--dark-navy);
}

.state-img-wrap {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.state-svg-illustration,
.state-card-img {
    width: 100%;
    height: 100%;
    max-height: 70px;
    object-fit: contain;
}

.state-name {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-top: 4px;
}

/* Bottom Banner Box ("Not sure if your property is in one of these states?") */
.states-bottom-banner {
    background-color: #ffffff;
    border: 2.5px solid var(--dark-navy);
    border-radius: 24px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 4px 4px 0 rgba(28, 28, 46, 0.06);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .states-bottom-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sbb-left-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sbb-question-icon {
    width: 54px;
    height: 54px;
    background-color: #9b87f5;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #000000;
}

.sbb-title {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 3px;
}

.sbb-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5a5a72;
    margin: 0;
}

.sbb-right-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sbb-cta-btn {
    white-space: nowrap;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 14px;
    border: none;
}

.sbb-cta-btn:hover {
    color: #ffffff;
}

.sbb-plane-graphic {
    display: flex;
    align-items: center;
}

.sbb-plane-img {
    width: 150px;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .sbb-plane-graphic {
        display: none;
    }
}

/* Right Sidebar Card */
.states-sidebar-card {
    background-color: #ffffff;
    border: 2.5px solid var(--dark-navy);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 5px 5px 0 rgba(28, 28, 46, 0.05);
}

.sidebar-heading {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.22;
    color: var(--dark-navy);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.sidebar-heading-highlight {
    display: inline-block;
    position: relative;
}

.sidebar-heading-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 54px;
    height: 3px;
    background-color: #e05a47;
}

.sidebar-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.sf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sf-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.sf-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.sf-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #5a5a72;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar Mint Card ("Don't See Your State?") */
.sidebar-mint-box {
    background-color: #eaf7f1;
    border-top: 1.5px dashed #b0bec5;
    padding: 24px 20px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.smb-title {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.smb-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #37474f;
    line-height: 1.5;
    margin-bottom: 16px;
}

.smb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    background-color: #ffffff;
    border: 2px solid var(--dark-navy);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark-navy);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.smb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 var(--dark-navy);
    color: var(--dark-navy);
}

.smb-map-graphic {
    pointer-events: none;
}

.smb-map-img {
    width: 110px;
    height: auto;
    display: block;
}


/* ===================================================
   COMMON SITE FOOTER STYLES
=================================================== */
.site-footer {
    background-color: var(--dark-navy);
    color: #ffffff;
    padding: 24px 0;
    border-top: 3px solid var(--dark-navy);
}

.footer-top-row {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 30px;
}

.footer-bio {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 380px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-title {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--yellow-circ);
    padding-left: 4px;
}

.footer-contact-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-cta-btn {
    display: inline-flex;
    padding: 12px 22px;
    font-size: 14px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   OREGON PAGE — SCOPED STYLES (or- prefix)
============================================================ */

/* Breadcrumb */
.or-breadcrumb {
    padding: 14px 0 8px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-mid);
}

.breadcrumb-list a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: var(--orange);
}

.bc-sep {
    color: #bbb;
    font-size: 12px;
}

.bc-current {
    font-weight: 600;
    color: var(--dark-navy);
}

/* HERO SECTION */
.or-hero {
    position: relative;
    padding: 30px 0 60px;
    overflow: visible;
}

.or-breadcrumb-wrap {
    margin-bottom: 14px;
}

.or-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #ff5e28;
    text-decoration: none;
    margin-bottom: 22px;
    transition: gap 0.2s ease;
}

.or-back-link:hover {
    color: #e04b19;
    gap: 10px;
}

/* Oregon Title Group */
.or-hero-title-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.or-map-wrap {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    transform: rotate(-6deg);
    transition: transform 0.3s ease;
}

/* .or-map-wrap:hover {
    transform: rotate(0deg) scale(1.05);
} */

.or-state-map-svg,
.or-state-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.08));
}

.or-title-block {
    display: flex;
    flex-direction: column;
}

.or-state-name {
    font-family: 'Georgia', serif;
    font-size: 100px;
    font-weight: 500;
    color: var(--dark-navy);
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0;
}

.or-underline-wrap {
    width: 185px;
    margin-top: -2px;
    margin-bottom: 4px;
}

.or-title-underline {
    width: 100%;
    height: 10px;
    display: block;
}

.or-state-tagline {
    font-family: 'Caveat', cursive;
    font-size: 50px;
    font-weight: 700;
    color: #1c5e4b;
    line-height: 1;
    display: block;
    margin-top: 2px;
}

.or-hero-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 0;
}

/* Hero Visual Wrap & Card */
.or-hero-visual {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Floating Background Circles */
.or-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.or-deco-circle.circle-yellow {
    width: 120px;
    height: 120px;
    background-color: #f5d572;
    top: -35px;
    right: 170px;
    opacity: 0.85;
}

.or-deco-circle.circle-mint {
    width: 140px;
    height: 140px;
    background-color: #a8e6c1;
    top: -30px;
    right: 5px;
    opacity: 0.85;
}

.or-deco-circle.circle-purple {
    width: 65px;
    height: 65px;
    background-color: #c9b8f2;
    bottom: -15px;
    right: -15px;
    opacity: 0.85;
}

.or-hero-sparkle {
    position: absolute;
    top: -5px;
    left: -15px;
    z-index: 2;
    color: #1c1c2e;
}

.or-hero-card {
    position: relative;
    z-index: 1;
    border-radius: 38px;
    overflow: visible;
}

.or-hero-img-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 58px;
}


.or-seal-svg-hero {
    width: 100%;
    height: 100%;
    display: block;
}

/* STATS BAR SECTION (PIXEL PERFECT MATCH TO SCREENSHOT) */
.or-stats-bar {
    padding: 30px 0 50px;
    background: transparent;
}

.or-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.or-stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.or-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.or-stat-card.card-green {
    border: 1.5px solid #e1eee5;
}

.or-stat-card.card-orange {
    border: 1.5px solid #ffe3d6;
}

.or-stat-card.card-purple {
    border: 1.5px solid #eae0fc;
}

.or-stat-card.card-facts {
    border: 1.5px solid #e4e4eb;
    background: #ffffff;
}

/* Card Header (Icon + Label in flex row) */
.or-stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.or-stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.or-stat-icon-wrap.icon-darkgreen {
    background-color: #0b4d3c;
}

.or-stat-icon-wrap.icon-orange {
    background-color: #ff5e28;
}

.or-stat-icon-wrap.icon-purple {
    background-color: #7e46db;
}

.or-stat-label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.25;
}

/* Card Body (Values) */
.or-stat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 12px;
}

.or-val-huge {
    font-family: 'Georgia', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

.or-val-unit {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 4px;
}

.or-val-large {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.or-val-medium {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.text-darkgreen {
    color: #0b4d3c;
}

.text-orange {
    color: #ff5e28;
}

.text-purple {
    color: #7e46db;
}

/* Card Note / Description */
.or-stat-note {
    font-family: var(--font-body);
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 14px;
}

/* Card Footer Links */
.or-stat-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.or-stat-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.or-stat-link:hover {
    opacity: 0.8;
}

.or-stat-link.link-orange {
    color: #ff5e28;
}

.or-stat-link.link-purple {
    color: #7e46db;
}

/* Quick Facts Card Styling */
.or-facts-header {
    margin-bottom: 16px;
}

.or-facts-title {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 0;
}

.or-facts-line {
    width: 32px;
    height: 3px;
    background-color: #ff5e28;
    border-radius: 2px;
    margin-top: 6px;
}

.or-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.or-facts-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f5;
    font-family: var(--font-body);
    font-size: 12px;
}

.or-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.or-facts-list li svg {
    flex-shrink: 0;
}

.or-fact-key {
    font-weight: 600;
    color: #1c1c2e;
}

.or-fact-val {
    font-weight: 600;
    color: #1c1c2e;
    margin-left: auto;
    text-align: right;
}

.or-link-site {
    color: #1c1c2e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.or-link-site:hover {
    color: #ff5e28;
}
   

/* ASSET TYPES + IMPORTANT TO KNOW SECTION */
.or-assets-section {
    padding: 30px 0 50px;
    background: transparent;
}

.or-assets-card-box {
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 28px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.or-assets-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.or-purple-sparks {
    flex-shrink: 0;
    margin-top: -4px;
}

.or-assets-header .or-section-heading {
    font-family: 'Georgia', serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

/* 7 Column Asset Cards Grid */
.or-asset-types-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.or-asset-type-card {
    background: #faf7f2;
    border: 1px solid #f0ebe1;
    border-radius: 18px;
    padding: 22px 8px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.or-asset-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #e2d7c5;
}

.or-asset-icon-box {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.or-asset-icon-box svg,
.or-asset-icon-box img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.or-asset-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.3;
}

/* Right Box Container (Important to Know) */
.or-itk-card {
    background: #FAF7F2;
    border: 1.5px solid #EBE4D8;
    border-radius: 28px;
    padding: 32px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.or-itk-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.or-itk-icon {
    width: 32px;
    height: 32px;
    background: #0b4d3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.or-itk-title {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b4d3c;
}

.or-itk-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5a5a72;
    line-height: 1.55;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.or-itk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.or-itk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #1c1c2e;
    line-height: 1.4;
}

.or-itk-list li svg {
    flex-shrink: 0;
}

.or-itk-footer {
    margin-top: auto;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.or-itk-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #0b4d3c;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.or-itk-link:hover {
    opacity: 0.8;
}

/* Pine Trees Background Image at bottom right */
.or-itk-trees-bg,
.or-itk-trees-wrap {
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 75%;
    max-width: 290px;
    pointer-events: none;
    z-index: 0;
}

.or-itk-trees-bg img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.55;
    filter: saturate(0.85);
}
   

.or-itk-img-caption p {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0;
}

/* WHY TRUST TRACEAID + COAST SECTION */
.or-trust-section {
    padding: 30px 0 50px;
    background: transparent;
}

/* Left Card Container */
.or-trust-card-box {
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 28px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: none;
}

.or-trust-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.or-trust-header .or-section-heading {
    font-family: 'Georgia', serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.25;
}

.or-green-squiggle {
    margin-top: -6px;
    margin-right: 4px;
    flex-shrink: 0;
}

/* 5 Column Grid */
.or-trust-5grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    flex: 1;
    align-items: flex-start;
}

.or-trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Outer Circles */
.or-trust-icon-outer {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.or-trust-icon-outer svg,
.or-trust-icon-outer img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.or-trust-item:hover .or-trust-icon-outer {
    transform: scale(1.06);
}

.icon-outer-green {
    background: #ffffff;
    border: 1.5px solid #d0e4d8;
}

.icon-outer-darkgreen {
    background: #ffffff;
    border: 1.5px solid #cce8d5;
}

.icon-outer-red {
    background: #ffffff;
    border: 1.5px solid #fcdada;
}

.icon-outer-blue {
    background: #ffffff;
    border: 1.5px solid #d8e5fc;
}

.or-trust-circle-solid {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-darkgreen {
    background-color: #0b4d3c;
}

.or-trust-name {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.35;
    margin-bottom: 8px;
}

.or-trust-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: #5a5a72;
    line-height: 1.45;
    margin: 0;
}

/* Right Card Container (From Mountains to Coast - PIXEL PERFECT MATCH) */
.or-coast-card-box {
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: none;
}

/* Orange Sunburst Sparkles at Top Right */
.or-sunburst-sparks {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 10;
    pointer-events: none;
}

/* Full Image Wrapper */
.or-coast-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 290px;
    position: relative;
    overflow: hidden;
}

.or-coast-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom-Left Curved Cream Text Overlay Box */
.or-coast-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 82%;
    background: #faf7f2;
    padding: 22px 20px 20px 22px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 26px;
    z-index: 3;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}

.or-coast-heading {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1c2e;
    margin-bottom: 8px;
    line-height: 1.25;
}

.or-coast-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: #5a5a72;
    line-height: 1.55;
    margin: 0;
}

/* Bottom Right Mint Green Circle Blob */
.or-coast-green-blob {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 115px;
    height: 115px;
    background: #84c7af;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* PROCESS + CTA SECTION (PIXEL PERFECT MATCH TO SCREENSHOT) */
.or-process-section {
    padding: 30px 0 50px;
    background: transparent;
    position: relative;
}

/* Outer Background Green Blob Top-Left */
.or-outer-green-blob {
    position: absolute;
    top: 10px;
    left: -10px;
    width: 130px;
    height: 130px;
    background: #88cfb5;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
}

/* Outer Background Purple Dot Bottom-Left */
.or-outer-purple-dot {
    position: absolute;
    bottom: 0px;
    left: 8px;
    z-index: 0;
    pointer-events: none;
}

.or-process-card-box {
    background: #ffffff;
    border: 1.5px solid #eaeaea;
    border-radius: 28px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: none;
}

.or-process-card-box .or-section-heading {
    font-family: 'Georgia', serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 32px;
}

/* Track Container + Background Wave Line */
.or-process-track-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.or-process-wave-line {
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    width: calc(100% - 80px);
    height: 60px;
    pointer-events: none;
    z-index: 0;
}

.or-process-4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.or-process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Circle Icons */
.or-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.or-step-circle svg,
.or-step-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.or-process-step-item:hover .or-step-circle {
    transform: scale(1.06);
}

.circle-dashed-blue {
    border: 1.5px dashed #3b82f6;
}

.circle-dashed-orange {
    border: 1.5px dashed #f97316;
}

.circle-dashed-green {
    border: 1.5px dashed #10b981;
}

.circle-dashed-purple {
    border: 1.5px dashed #8b5cf6;
}

.bg-purple-solid {
    background-color: #7e46db;
}

/* Step Numbers & Text */
.or-step-num {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.num-blue { color: #2563eb; }
.num-orange { color: #ff5e28; }
.num-green { color: #0b4d3c; }
.num-purple { color: #7e46db; }

.or-step-title {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    color: #1c1c2e;
    margin-bottom: 8px;
}

.or-step-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: #5a5a72;
    line-height: 1.45;
    margin: 0;
}

/* =============================================
   TRUST BAR SECTION (oregon.php)
   Licensed · Insured · Bonded · Your Trust Matters
   ============================================= */
.or-trust-bar-section {
    padding: 0 0 20px;
}

.or-trust-bar-box {
    border: 1px solid rgba(28, 28, 46, 0.15);
    background-color: rgba(253, 251, 247, 0.35);
    border-radius: 24px;
    padding: 32px 15px;
    margin-top: 0;
    margin-bottom: 40px;
}

.or-trust-bar-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    position: relative;
    padding: 10px 15px;
}

/* Vertical dashed dividers between columns on desktop */
.or-trust-bar-col::after {
    display: none;
}

@media (min-width: 992px) {
    .or-trust-bar-col::after {
        display: block;
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        width: 2.2px;
        height: 80%;
        background-image: linear-gradient(to bottom, rgba(28, 28, 46, 0.25) 50%, transparent 50%);
        background-size: 2.2px 10px;
        background-repeat: repeat-y;
    }

    .or-trust-bar-row > div:last-child .or-trust-bar-col::after {
        display: none;
    }
}

.or-trust-bar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.or-trust-bar-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

.or-trust-bar-body {
    flex-grow: 1;
}

.or-trust-bar-title {
    font-family: 'Patrick Hand', 'Comic Sans MS', cursive;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.02em;
    color: var(--dark-navy, #1c1c2e);
    margin-bottom: 0px;
    text-transform: uppercase;
    display: inline-block;
}

/* Colored underline beneath each title */
.or-trust-bar-line {
    display: block;
    height: 2.2px;
    width: 80px;
    border-radius: 1px;
    margin-top: 2px;
    margin-bottom: 12px;
}
.or-trust-bar-line.line-green  { background-color: #1c5e4b; }
.or-trust-bar-line.line-purple { background-color: #9061f9; }
.or-trust-bar-line.line-orange { background-color: #e85a2b; }

.or-trust-bar-desc {
    font-family: 'Patrick Hand', 'Comic Sans MS', cursive;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-navy, #1c1c2e);
    margin-bottom: 0;
}

/* Mobile: horizontal dashed dividers instead of vertical */
@media (max-width: 991.98px) {
    .or-trust-bar-col::after {
        display: none;
    }
    .or-trust-bar-col {
        border-bottom: 2px dashed rgba(28, 28, 46, 0.15);
        padding-bottom: 20px;
        padding-top: 15px;
    }
    .or-trust-bar-row > div:last-child .or-trust-bar-col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Lavender CTA Container */

.or-cta-lavender-box {
    background: #ebe3f8;
    border-radius: 28px;
    padding: 36px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.or-cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.or-cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.or-cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(235, 227, 248, 0.94) 0%, rgba(235, 227, 248, 0.72) 48%, rgba(235, 227, 248, 0.35) 100%);
}

.or-cta-text-content {
    position: relative;
    z-index: 2;
}

.or-cta-lavender-heading {
    font-family: 'Georgia', serif;
    font-size: 23px;
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.28;
    margin-bottom: 12px;
}

.or-cta-lavender-sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #4a4765;
    line-height: 1.55;
    margin-bottom: 24px;
}

.btn-start-free-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: #ffffff;
    color: #1c1c2e;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-start-free-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    color: #1c1c2e;
}

/* BOTTOM CTA STRIP (PIXEL PERFECT MATCH TO SCREENSHOT) */
.or-bottom-strip {
    padding: 30px 0 60px;
    background: transparent;
}

.or-strip-pill-box {
    background: #faf7f2;
    border: 1.5px solid #ebe4d8;
    border-radius: 100px;
    padding: 10px 14px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    max-width: 1060px;
    margin: 0 auto;
}

.or-strip-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.or-strip-yellow-bulb {
    width: 54px;
    height: 54px;
    /* background-color: #ffc83b; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.or-strip-yellow-bulb img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.or-strip-text {
    display: flex;
    flex-direction: column;
}

.or-strip-headline {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1c2e;
    margin: 0;
    line-height: 1.25;
}

.or-strip-sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: #5a5a72;
    margin: 2px 0 0 0;
}

.btn-check-funds {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 7px 18px;
    background: #ff4a1c;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255, 74, 28, 0.3);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-check-funds:hover {
    background: #e03e13;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 74, 28, 0.45);
}

/* RESPONSIVE BREAKPOINTS (MOBILE & TABLET PERFECTION) */
@media (max-width: 1399.98px) {
    .or-asset-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .or-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .or-stat--facts {
        grid-column: span 3;
    }
    .or-trust-5grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .or-process-4grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .or-process-wave-line {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .or-assets-card-box,
    .or-itk-card,
    .or-trust-card-box,
    .or-coast-card-box,
    .or-process-card-box,
    .or-cta-lavender-box {
        padding: 24px 20px;
        border-radius: 24px;
    }
    .or-coast-card-box {
        min-height: 280px;
    }
    .or-coast-img-wrap {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .or-state-name {
        font-size: 52px;
    }
    .or-state-tagline {
        font-size: 28px;
    }
    .or-map-wrap {
        width: 80px;
        height: 72px;
    }
    .or-hero-img-main {
        height: 250px;
    }
    .or-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .or-stat--facts {
        grid-column: span 2;
    }
    /* Stat Cards Header Centering on Mobile */
    .or-stat-card {
        text-align: center;
    }
    .or-stat-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    .or-stat-label {
        text-align: center;
    }
    .or-facts-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .or-asset-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .or-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .or-process-track {
        grid-template-columns: 1fr 1fr;
    }
    .or-strip-pill-box {
        flex-direction: column;
        border-radius: 24px;
        padding: 24px 18px;
        text-align: center;
        gap: 16px;
    }
    .or-strip-left {
        flex-direction: column;
        gap: 10px;
    }
    .or-strip-headline {
        font-size: 19px;
    }
    .or-strip-sub {
        font-size: 13.5px;
    }
    .btn-check-funds {
        width: 100%;
        justify-content: center;
        font-size: 13.5px;
        padding: 13px 20px;
    }
}

@media (max-width: 575.98px) {
    .or-state-name {
        font-size: 40px;
    }
    .or-hero-desc {
        font-size: 15px;
    }
    .or-stats-grid {
        grid-template-columns: 1fr;
    }
    .or-stat--facts {
        grid-column: span 1;
    }
    
    /* Asset Types Grid on Mobile */
    .or-asset-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .or-asset-types-grid .or-asset-type-card:last-child {
        grid-column: span 2;
    }
    .or-asset-type-card {
        padding: 18px 8px 14px;
        border-radius: 14px;
    }
    .or-asset-icon-box {
        height: 40px;
        margin-bottom: 8px;
    }
    .or-asset-icon-box svg,
    .or-asset-icon-box img {
        width: 28px;
        height: 28px;
    }
    .or-asset-label {
        font-size: 11px;
    }

    /* Trust Section Grid on Mobile */
    .or-trust-5grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 6px;
    }
    .or-trust-icon-outer {
        width: 56px;
        height: 56px;
    }
    .or-trust-icon-outer svg,
    .or-trust-icon-outer img {
        width: 26px;
        height: 26px;
    }
    .or-trust-icon-outer {
        margin-bottom: 10px;
    }
    .or-trust-circle-solid {
        width: 42px;
        height: 42px;
    }
    .or-trust-circle-solid svg {
        width: 18px;
        height: 18px;
    }
    .or-trust-name {
        font-size: 11.5px;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    .or-trust-desc {
        font-size: 10px;
        line-height: 1.35;
    }

    /* Coast Card on Mobile */
    .or-coast-card-box {
        min-height: 260px;
    }
    .or-coast-img-wrap {
        min-height: 260px;
    }
    .or-coast-overlay-box {
        width: 90%;
        padding: 16px 14px 14px 16px;
        border-top-right-radius: 35px;
    }
    .or-coast-heading {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .or-coast-desc {
        font-size: 11.5px;
        line-height: 1.45;
    }

    /* Process 4-Grid on Mobile */
    .or-process-4grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .or-step-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .or-step-circle svg,
    .or-step-circle img {
        width: 24px;
        height: 24px;
    }
    .or-step-num {
        font-size: 12px;
    }
    .or-step-title {
        font-size: 13.5px;
        margin-bottom: 4px;
    }
    .or-step-desc {
        font-size: 11px;
        line-height: 1.35;
    }

    /* CTA Lavender Box on Mobile */
    .or-cta-lavender-box {
        padding: 24px 20px 18px;
    }
    .or-cta-lavender-heading {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .or-cta-lavender-sub {
        font-size: 12.5px;
        margin-bottom: 18px;
    }
    .btn-start-free-search {
        padding: 12px 18px;
        font-size: 13px;
    }
    .or-cta-box-illustration {
        width: 120px;
        bottom: 8px;
        right: 8px;
        opacity: 0.95;
    }
    .or-cta-box-illustration svg {
        width: 120px;
        height: 104px;
    }

    .or-seal-badge {
        width: 70px;
        height: 70px;
        right: -10px;
        bottom: -10px;
    }
}

/* ROTATING SEARCH SVG ANIMATION (INSIDE GAUGE WRAP) */
.gauge-wrap .search-rotate-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: spinSearch 15s linear infinite;
    transform-origin: center center;
    display: block;
}

@keyframes spinSearch {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ============================================================
   WHAT ARE UNCLAIMED FUNDS SECTION
============================================================ */
.uaf-section {
    background-color: var(--cream);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}



/* ---- TOP HEADING BLOCK ---- */
.uaf-top-block {
    position: relative;
    text-align: center;
    max-width: 1040px;
    margin: 0 auto 64px;
}

.uaf-header-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

/* Handwritten bubble top-left */
.uaf-sketch-bubble {
    position: absolute;
    top: -65px;
    left: -190px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.uaf-sketch-bubble span {
    color: #2d6a4f;
}

.uaf-sketch-bubble-anim {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: uafBubblePulse 2.4s ease-in-out infinite;
}

@keyframes uafBubblePulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 0px rgba(45, 106, 79, 0));
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px) scale(1.04);
        filter: drop-shadow(0 4px 10px rgba(45, 106, 79, 0.35));
        opacity: 1;
    }
}

.uaf-bubble-inner {
    position: relative;
    width: 220px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-6deg);
}

.uaf-sketch-svg {
    width: 220px;
    height: 78px;
    position: absolute;
    top: 0;
    left: 0;
}

.uaf-sketch-text {
    position: relative;
    z-index: 1;
    font-family: 'Patrick Hand', 'Comic Sans MS', cursive;
    font-size: 13px;
    font-weight: 700;
    color: #2d6a4f;
    line-height: 1.35;
    text-align: center;
    padding: 14px 20px 10px;
    width: 220px;
    letter-spacing: 0.03em;
}

.uaf-sketch-arrow {
    width: 58px;
    height: 42px;
    margin-top: -6px;
    margin-right: 80px;
}

/* Heading Wrap & Main Heading */
.uaf-heading-wrap {
    position: relative;
    display: inline-block;
}

.uaf-main-heading {
    font-family: 'Georgia', serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 500;
    color: var(--dark-navy);
    line-height: 1.15;
    margin-bottom: 6px;
}

/* Organic Green Underline SVG below Heading */
.uaf-underline-svg {
    width: 100%;
    max-width: 580px;
    height: 16px;
    display: block;
    margin: 0 auto;
}

/* Main description */
.uaf-main-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-navy);
    line-height: 1.55;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.uaf-main-desc strong {
    font-weight: 700;
    color: var(--dark-navy);
}
   

/* ---- STAT CARDS ROW ---- */
.uaf-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    max-width: 980px;
    margin: 0 auto 72px;
}

.uaf-stat-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 10px;
}

.uaf-stat-divider {
    width: 10px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

/* People icons */
.uaf-people-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 22px;
}

.uaf-person-icon,
.uaf-person-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Sketched Oval Badge (1 IN 7 / BILLIONS) */
.uaf-sketch-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    width: 220px;
    height: 66px;
}

.uaf-sketch-badge-svg {
    width: 220px;
    height: 66px;
    position: absolute;
    top: 0;
    left: 0;
}

.uaf-sketch-badge-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.uaf-text--purple { color: #4341c8; }
.uaf-text--green  { color: #267039; }

/* Shared stat label */
.uaf-stat-label {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 500;
    color: #2b2b36;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

/* Hand-drawn underline below labels */
.uaf-sketch-line-svg {
    width: 150px;
    height: 10px;
    display: block;
    margin: 0 auto;
}

/* Stat 2: BILLIONS layout (Money bag + Text side-by-side) */
.uaf-billions-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uaf-moneybag-sketch {
    flex-shrink: 0;
}

.uaf-moneybag-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.uaf-billions-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- HOW DOES MONEY BECOME UNCLAIMED ---- */
.uaf-how-block {
    text-align: center;
}

.uaf-how-heading-wrap {
    margin-bottom: 48px;
}

/* 6-column grid */
.uaf-how-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: start;
}

/* Individual card - Transparent, floating on grid paper */
.uaf-how-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 4px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.25s ease;
    cursor: default;
}

.uaf-how-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Icon area */
.uaf-how-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 16px; */
    flex-shrink: 0;
}

.uaf-how-icon-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Handwritten Card Title */
.uaf-how-title {
    font-family: 'Patrick Hand', 'Caveat', cursive;
    font-size: 19px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.uaf-how-title--green  { color: #2d6a4f; }
.uaf-how-title--purple { color: #4341c8; }
.uaf-how-title--orange { color: #d94e24; }

/* Card description */
.uaf-how-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: #2b2b36;
    line-height: 1.55;
    margin: 0;
    text-align: center;
}


/* ============================================================
   UAF RESPONSIVE — Laptop & Tablet
============================================================ */
@media (max-width: 1200px) {
    .uaf-sketch-bubble {
        top: -65px;
        left: -180px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

@media (max-width: 1100px) {
    .uaf-how-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .uaf-header-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .uaf-sketch-bubble {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        align-self: flex-start !important;
        margin: 0 0 16px 0 !important;
        transform: scale(0.82) !important;
        transform-origin: top left !important;
        align-items: flex-start !important;
    }

    .uaf-sketch-bubble-anim {
        align-items: flex-start !important;
    }

    .uaf-sketch-arrow {
        margin-right: 0 !important;
        margin-left: 60px !important;
    }
}

/* ============================================================
   UAF RESPONSIVE — Mobile (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
    .uaf-section {
        padding: 60px 0 72px;
    }
    
    .uaf-top-block {
        margin-bottom: 44px;
    }

    .uaf-sketch-bubble {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        align-self: flex-start !important;
        margin: 0 0 12px 0 !important;
        transform: scale(0.78) !important;
        transform-origin: top left !important;
        align-items: flex-start !important;
    }

    .uaf-sketch-bubble-anim {
        align-items: flex-start !important;
    }

    .uaf-sketch-arrow {
        margin-right: 0 !important;
        margin-left: 50px !important;
    }

    .uaf-main-heading {
        font-size: clamp(26px, 8vw, 36px);
    }

    .uaf-main-desc {
        font-size: 15px;
    }

    .uaf-stats-row {
        flex-direction: column;
        max-width: 380px;
    }

    .uaf-billions-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .uaf-stat-divider {
        width: 180px;
        height: 20px;
        margin: 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .uaf-divider-svg {
        width: 10px;
        height: 180px;
        transform: rotate(90deg);
    }

    .uaf-stat-card {
        padding: 32px 24px;
    }

    .uaf-stat-badge {
        font-size: 34px;
        padding: 6px 22px;
    }

    .uaf-billions-tag {
        font-size: 28px;
        padding: 6px 22px;
    }

    .uaf-how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .uaf-how-card {
        padding: 22px 12px 20px;
    }
}

/* ============================================================
   SITE FOOTER STYLES
============================================================ */
.site-footer {
    background: #0b132b;
    color: #e0e6ed;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #94a3b8;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-legal-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-legal-link:hover {
    color: #52b788;
    text-decoration: underline;
}

.footer-dot {
    color: #64748b;
    font-size: 14px;
}

.footer-legal-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bbb-seal {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-bbb-seal img {
    height: 36px;
    width: auto;
    display: block;
    border: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-bbb-seal:hover img {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-legal-wrap {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .uaf-how-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* --- FLOATING ACCREDITED BBB WIDGET --- */
.floating-bbb-widget {
    position: fixed;
    bottom: 65px;
    left: 35px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background-color: #FAF7F2;
    border: 1.5px solid #0d233a;
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
    box-shadow: 4px 4px 0 #0d233a;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, left 0.5s ease;
    animation: bbb-slide-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes bbb-slide-in {
    0% {
        transform: translateX(-120%) rotate(-5deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

.floating-bbb-widget:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 6px 6px 0 #0d233a;
    background-color: #ffffff;
}

.floating-bbb-img-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcd7cd;
    flex-shrink: 0;
    overflow: hidden;
}

.floating-bbb-img {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.floating-bbb-text-wrap {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.floating-bbb-title {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.floating-bbb-desc {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0d233a;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 3px;
}

.floating-bbb-desc span {
    color: #2b5736;
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .floating-bbb-widget {
        bottom: 16px;
        left: 16px;
        padding: 6px 12px 6px 6px;
    }
    .floating-bbb-title {
        font-size: 9px;
    }
    .floating-bbb-desc {
        font-size: 11.5px;
    }
}

/* --- GLOBAL HERO BADGE ACCENTS --- */
.abouts-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 0.5px;
    border: 1.5px solid var(--dark-navy);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.abouts-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--orange);
}

/* --- HERO BUTTONS ALIGNMENT BELOW RECOVERY CARD --- */
.hero-btns-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
    align-items: flex-start;
    padding-left: 45px;
}

.hero-btns-wrap .btn-secondary-hero {
    width: 345px;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 16px 20px;
}

@media (max-width: 991.98px) {
    .hero-btns-wrap {
        padding-left: 0;
        align-items: center;
        margin-top: 25px;
    }
    
    .hero-btns-wrap .btn-secondary-hero {
        width: 335px;
    }
}

@media (max-width: 575.98px) {
    .hero-btns-wrap .btn-secondary-hero {
        width: 100%;
        max-width: 310px;
    }
}