    :root {
        --harbor-red-50: #fff1f1;
        --harbor-red-100: #ffd6d6;
        --harbor-red-200: #ffaaaa;
        --harbor-red-300: #ff6b6b;
        --harbor-red-400: #e8231f;
        --harbor-red-500: #c01a17;
        --harbor-red-600: #981512;
        --harbor-red-700: #700e0c;
        --harbor-red-800: #480807;
        --harbor-red-900: #210302;

        --harbor-dark-50: #f5f5f4;
        --harbor-dark-100: #e0dfdd;
        --harbor-dark-200: #b8b7b3;
        --harbor-dark-300: #8a8984;
        --harbor-dark-400: #5e5d58;
        --harbor-dark-500: #3a3936;
        --harbor-dark-600: #252421;
        --harbor-dark-700: #161614;
        --harbor-dark-800: #0e0d0c;
        --harbor-dark-900: #050504;

        --harbor-white-50: #ffffff;
        --harbor-white-100: #faf9f8;
        --harbor-white-200: #f2f0ee;
        --harbor-white-300: #e8e5e2;
        --harbor-white-400: #d6d2ce;
        --harbor-white-500: #bfbbb7;
        --harbor-white-600: #a09c98;
        --harbor-white-700: #7a7673;
        --harbor-white-800: #524f4d;
        --harbor-white-900: #2e2c2b;

        --harbor-shadow-sm: 0 1px 3px rgba(22, 22, 20, 0.08);
        --harbor-shadow-md: 0 4px 12px rgba(22, 22, 20, 0.12);
        --harbor-shadow-lg: 0 8px 24px rgba(22, 22, 20, 0.16);
        --harbor-shadow-accent: 0 4px 14px rgba(232, 35, 31, 0.28);

        --navy: var(--harbor-dark-800);
        --deep: var(--harbor-dark-700);
        --teal: var(--harbor-red-400);
        --teal-light: var(--harbor-red-300);
        --amber: var(--harbor-red-500);
        --white: var(--harbor-white-50);
        --off-white: var(--harbor-white-200);
        --muted: var(--harbor-dark-300);
        --card-bg: var(--harbor-dark-600);
        --border: rgba(232, 35, 31, 0.15);
        --glow: 0 0 40px rgba(232, 35, 31, 0.2);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "DM Sans", sans-serif;
        background: var(--navy);
        color: var(--white);
        overflow-x: hidden;
    }

    ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--harbor-dark-900);
        border-radius: 20px;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg,
                var(--harbor-red-400),
                var(--harbor-red-600));
        border-radius: 20px;
        border: 2px solid var(--harbor-dark-900);
        box-shadow: var(--harbor-shadow-accent);
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg,
                var(--harbor-red-300),
                var(--harbor-red-500));
        box-shadow: 0 0 12px rgba(232, 35, 31, 0.35);
    }

    ::-webkit-scrollbar-corner {
        background: var(--harbor-dark-900);
    }

    html {
        scroll-behavior: smooth;
    }


    h1,
    h2,
    h3,
    h4,
    .brand {
        font-family: "DM Sans", sans-serif;
    }


    /* ---------------------------------------------------------------------------------------------- NAVBAR  */
    #main-nav {
        background: var(--harbor-dark-700);
        height: var(--nav-h);
        position: sticky;
        top: 0;
        z-index: 1030;
        border-bottom: 1px solid var(--harbor-dark-600);
        font-family: 'Sora', sans-serif;
    }

    .navbar-brand img {
        height: 34px;
    }

    .navbar-nav .nav-link {
        color: var(--harbor-white-500) !important;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: .01em;
        padding: .45rem .85rem !important;
        border-radius: 6px;
        transition: color .18s, background .18s;
        white-space: nowrap;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--harbor-white-50) !important;
        background: var(--harbor-dark-600);
    }

    .navbar-nav .nav-link.active {
        color: var(--harbor-red-300) !important;
    }

    .btn-dh-cta {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--harbor-red-400);
        color: var(--harbor-white-50) !important;
        font-family: 'Sora', sans-serif;
        font-size: .875rem;
        font-weight: 600;
        padding: .5rem 1.25rem;
        border-radius: 8px;
        border: none;
        text-decoration: none;
        transition: background .18s, box-shadow .18s, transform .12s;
        white-space: nowrap;
    }

    .btn-dh-cta:hover {
        background: var(--harbor-red-300);
        box-shadow: 0 4px 18px rgba(232, 35, 31, .35);
        transform: translateY(-1px);
    }

    .btn-dh-cta svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        transition: transform .18s;
    }

    .btn-dh-cta:hover svg {
        transform: translateX(3px);
    }

    .nav-vdivider {
        width: 1px;
        height: 24px;
        background: var(--harbor-dark-500);
        margin: 0 .5rem;
    }

    .navbar-toggler {
        border: 1px solid var(--harbor-dark-400);
        padding: .35rem .6rem;
        border-radius: 6px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23bfbbb7' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    #navbarCollapse {
        padding: 10px 0;
    }

    #navbarCollapse .navbar-nav {
        gap: .1rem;
    }

    #navbarCollapse .nav-link {
        padding: .6rem 1.25rem !important;
        border-radius: 0;
    }

    #navbarCollapse .nav-link:hover {
        border-radius: 6px;
    }

    .mobile-cta-wrap {
        padding: 1rem 1.25rem 0;
    }

    .mobile-cta-wrap .btn-dh-cta {
        justify-content: center;
        width: 100%;
        padding: .75rem 1rem;
        font-size: .925rem;
    }

    .nav-link.scrolled-active {
        color: var(--harbor-red-300) !important;
    }


    /* ------------------------------------------------------------------------ HERO SECTION */
    .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 80px 48px 80px;
        gap: 60px;
        position: relative;
        overflow: hidden;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(232, 35, 31, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 35, 31, 0.1);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 13px;
        color: var(--teal);
        font-weight: 500;
        margin-bottom: 28px;
        letter-spacing: 0.3px;
    }

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--teal);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(1.4);
        }
    }

    .hero h1 {
        font-size: clamp(38px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }

    .hero h1 em {
        font-style: normal;
        color: var(--teal);
        position: relative;
    }

    .hero h1 em::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), transparent);
    }

    .hero-sub {
        font-size: 18px;
        line-height: 1.7;
        color: var(--muted);
        max-width: 480px;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-primary {
        background: var(--teal);
        color: var(--harbor-white-50);
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 16px;
        padding: 16px 36px;
        border-radius: 6px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.25s;
        letter-spacing: 0.2px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary:hover {
        background: var(--teal-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(232, 35, 31, 0.35);
    }

    .btn-ghost {
        background: transparent;
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        font-weight: 600;
        font-size: 15px;
        padding: 16px 28px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-decoration: none;
        cursor: pointer;
        transition: all 0.25s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-ghost:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

    .hero-stats {
        display: flex;
        gap: 36px;
        margin-top: 52px;
        padding-top: 36px;
        border-top: 1px solid var(--border);
    }

    .hero-stat .number {
        font-family: "DM Sans", sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: var(--white);
        letter-spacing: -1px;
    }

    .hero-stat .number span {
        color: var(--teal);
    }

    .hero-stat .label {
        font-size: 12px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
        font-weight: 500;
    }

    .hero-visual {
        position: relative;
        animation: floatIn 0.8s ease both;
    }

    @keyframes floatIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .screen-mockup {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), var(--glow);
        position: relative;
    }

    .screen-bar {
        background: var(--deep);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--border);
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .dot.r {
        background: #ff5f57;
    }

    .dot.y {
        background: #febc2e;
    }

    .dot.g {
        background: #28c840;
    }

    .screen-content {
        padding: 0;
        background: linear-gradient(135deg, var(--harbor-dark-700) 0%, var(--harbor-dark-800) 100%);
        aspect-ratio: 16/9;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        overflow: hidden;
        position: relative;
    }

    .screen-panel {
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-right: 1px solid var(--border);
    }

    .screen-panel:last-child {
        border-right: none;
    }

    .screen-panel-label {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--teal);
        font-weight: 600;
        font-family: "DM Sans", sans-serif;
    }

    .screen-panel-title {
        font-family: "DM Sans", sans-serif;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        margin: 8px 0;
    }

    .screen-panel-price {
        font-family: "DM Sans", sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: var(--amber);
    }

    .screen-panel-price small {
        font-size: 14px;
        color: var(--muted);
    }

    .screen-right {
        background: linear-gradient(135deg, rgba(232, 35, 31, 0.08), transparent);
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .screen-metric {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 14px;
    }

    .screen-metric-label {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--muted);
    }

    .screen-metric-value {
        font-family: "DM Sans", sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        margin-top: 4px;
    }

    .screen-metric-value.up {
        color: var(--teal);
    }

    .bar-chart {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 40px;
        margin-top: 8px;
    }

    .bar {
        flex: 1;
        background: var(--teal);
        border-radius: 2px 2px 0 0;
        opacity: 0.6;
        transition: opacity 0.3s;
    }

    .bar:nth-child(7) {
        opacity: 1;
    }

    .floating-tag {
        position: absolute;
        background: var(--amber);
        color: var(--harbor-white-50);
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 12px;
        padding: 6px 14px;
        border-radius: 100px;
        bottom: -16px;
        right: 24px;
        box-shadow: var(--harbor-shadow-accent);
        animation: bounce 3s ease-in-out infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    .logos-strip {
        padding: 48px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        text-align: center;
        background: rgba(22, 22, 20, 0.4);
        position: relative;
    }

    .logos-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        color: var(--muted);
        margin-bottom: 28px;
        font-weight: 600;
    }

    .logos-row {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        align-items: center;
    }

    .logo-pill {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 10px 28px;
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 13px;
        color: var(--muted);
        letter-spacing: 0.5px;
    }

    /* ------------------------------------------------------------------------------------------ SOLUTIONS PAGE */
    .nx-card-section {
        padding: 80px 0;
        background: var(--harbor-dark-900);
    }

    .nx-card-wrap {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nx-card {
        position: relative;
        width: 360px;
        height: 400px;
        border-radius: 26px;
        overflow: hidden;
        cursor: pointer;
        background: var(--harbor-dark-800);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .nx-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    }

    .nx-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .nx-card:hover .nx-card-img {
        transform: scale(1.08);
    }

    .nx-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.85) 15%,
                rgba(0, 0, 0, 0.55) 40%,
                rgba(0, 0, 0, 0.15) 70%,
                transparent 100%);
    }

    .nx-card-content {
        position: absolute;
        bottom: 0;
        padding: 22px;
        color: #fff;
        z-index: 2;
    }

    .nx-card-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .nx-card-desc {
        font-size: 12.5px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 14px;
    }

    .nx-card-meta {
        display: flex;
        gap: 8px;
        margin-bottom: 16px;
    }

    .nx-pill {
        font-size: 11px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(6px);
        color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nx-btn {
        width: 100%;
        padding: 12px;
        border-radius: 999px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        background: #fff;
        color: #111;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nx-btn:hover {
        background: var(--harbor-red-400);
        color: #fff;
    }

    /* -------------------------- 3D Tilt */
    .nx-tilt-card {
        perspective: 1200px;
    }

    .nx-tilt-inner {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 26px;
        transform-style: preserve-3d;
        transition: transform 0.2s ease;
    }

    .nx-card-img {
        transform: translateZ(0);
        transition: transform 0.4s ease;
    }

    .nx-card-content {
        transform: translateZ(40px);
    }

    .nx-card-overlay {
        transform: translateZ(20px);
    }

    .nx-card-glare {
        position: absolute;
        inset: 0;
        border-radius: 26px;
        background: radial-gradient(circle at 50% 50%,
                rgba(255, 255, 255, 0.25),
                transparent 60%);
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
    }

    .nx-tilt-card:hover .nx-card-img {
        transform: scale(1.1) translateZ(20px);
    }

    section {
        padding: 100px 48px;
        position: relative;
    }

    .section-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--teal);
        margin-bottom: 16px;
        font-family: "DM Sans", sans-serif;
    }

    .section-title {
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.1;
        max-width: 640px;
        margin-bottom: 20px;
    }

    .section-title span {
        color: var(--teal);
    }

    .section-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 560px;
        font-weight: 300;
        margin-bottom: 56px;
    }

    .problems {
        background: var(--deep);
    }

    .problems-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-top: 60px;
        border: 2px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
    }

    .problem-card {
        background: var(--card-bg);
        padding: 40px 32px;
        position: relative;
        overflow: hidden;
    }

    .problem-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .problem-card:hover::before {
        opacity: 1;
    }

    .problem-icon {
        width: 48px;
        height: 48px;
        background: rgba(232, 35, 31, 0.1);
        border: 1px solid var(--border);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .problem-card h3 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.3px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .problem-card p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.7;
        font-weight: 300;
    }

    .how-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        background: var(--border);
        border-radius: 16px;
        overflow: hidden;
        margin-top: 60px;
    }

    .step {
        background: var(--navy);
        padding: 48px 32px;
        position: relative;
        transition: background 0.3s;
    }

    .step:hover {
        background: var(--card-bg);
    }

    .step-number {
        font-family: "DM Sans", sans-serif;
        font-size: 72px;
        font-weight: 800;
        color: rgba(232, 35, 31, 0.1);
        line-height: 1;
        margin-bottom: 20px;
        letter-spacing: -3px;
    }

    .step h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.2px;
    }

    .step p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        font-weight: 300;
    }

    .step-arrow {
        position: absolute;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: var(--teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        z-index: 2;
        color: var(--harbor-white-50);
        font-weight: 700;
    }

    .step:last-child .step-arrow {
        display: none;
    }

    .features {
        background: var(--deep);
    }

    .features-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        margin-top: 60px;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        padding: 24px;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.2s;
        border: 1px solid transparent;
    }

    .feature-item:hover,
    .feature-item.active {
        background: var(--card-bg);
        border-color: var(--border);
    }

    .feature-item.active .feature-icon {
        background: var(--teal);
        color: var(--harbor-white-50);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.2s;
    }

    .feature-text h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }

    .feature-text p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.6;
        font-weight: 300;
    }

    .feature-showcase {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--glow);
        position: sticky;
        top: 120px;
    }

    .showcase-header {
        background: var(--deep);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .showcase-title {
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 700;
    }

    .showcase-status {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: var(--teal);
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: var(--teal);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .showcase-body {
        padding: 32px;
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .showcase-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 20px;
    }

    .showcase-card-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--muted);
        margin-bottom: 8px;
    }

    .showcase-card-value {
        font-family: "DM Sans", sans-serif;
        font-size: 24px;
        font-weight: 800;
    }

    .showcase-card-value.teal {
        color: var(--teal);
    }

    .showcase-card-value.amber {
        color: var(--amber);
    }

    .mini-bar-row {
        display: flex;
        gap: 6px;
        align-items: flex-end;
        height: 50px;
        margin-top: 16px;
    }

    .mini-bar {
        flex: 1;
        border-radius: 3px 3px 0 0;
        transition: height 0.5s;
    }

    .mini-bar.teal-bar {
        background: var(--teal);
    }

    .mini-bar.amber-bar {
        background: var(--amber);
        opacity: 0.5;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 60px;
    }

    .industry-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .industry-card:hover {
        border-color: var(--teal);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(232, 35, 31, 0.1);
    }

    .industry-icon img {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        margin-bottom: 20px;
        filter: brightness(0) saturate(100%) invert(17%) sepia(92%) saturate(7492%) hue-rotate(357deg) brightness(93%) contrast(119%);
    }

    .industry-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -0.2px;
    }

    .industry-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
        font-weight: 300;
    }

    .testimonials {
        background: var(--deep);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 60px;
    }

    .testimonial-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 36px 32px;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 28px;
        font-family: "DM Sans", sans-serif;
        font-size: 80px;
        font-weight: 800;
        color: rgba(232, 35, 31, 0.12);
        line-height: 1;
    }

    .stars {
        color: var(--amber);
        font-size: 14px;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        font-style: italic;
        margin-bottom: 24px;
    }

    .testimonial-author {
        display: flex;
        gap: 14px;
        align-items: center;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal), var(--harbor-red-700));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: var(--harbor-white-50);
        flex-shrink: 0;
    }

    .author-name {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.2px;
    }

    .author-role {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
    }

    /* Fix optgroup label visibility */
    .form-select optgroup {
        color: #444;
        /* dark text */
        font-weight: 600;
    }

    /* Fix dropdown background */
    .form-select {
        background-color: #fff;
        color: #222;
    }

    /* Improve option contrast */
    .form-select option {
        color: #222;
    }


    .lead-form-wrap {
        max-width: 680px;
        margin: 0 auto 32px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), var(--glow);
        text-align: left;
    }

    .lead-form-header {
        background: linear-gradient(135deg, rgba(232, 35, 31, 0.15), rgba(232, 35, 31, 0.05));
        border-bottom: 1px solid var(--border);
        padding: 24px 36px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .lead-form-header-left h3 {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.3px;
        margin-bottom: 4px;
    }

    .lead-form-header-left p {
        font-size: 13px;
        color: var(--muted);
        font-weight: 300;
    }

    .lead-form-badge {
        background: var(--teal);
        color: var(--harbor-white-50);
        font-family: "DM Sans", sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 100px;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .lead-form-body {
        padding: 32px 36px 36px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-grid .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .form-label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: var(--muted);
        font-family: "DM Sans", sans-serif;
    }

    .form-label .req {
        color: var(--teal);
        margin-left: 2px;
    }

    .form-input,
    .form-select {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 13px 16px;
        border-radius: 8px;
        outline: none;
        transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-input::placeholder {
        color: rgba(138, 137, 132, 0.6);
    }

    .form-input:focus,
    .form-select:focus {
        border-color: var(--teal);
        background: rgba(232, 35, 31, 0.06);
        box-shadow: 0 0 0 3px rgba(232, 35, 31, 0.12);
    }

    .form-input:focus::placeholder {
        opacity: 0.4;
    }

    .form-select {
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8984' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 44px;
    }

    .form-select option {
        background: var(--card-bg);
        color: var(--white);
    }

    .form-select option[value=""] {
        color: rgba(138, 137, 132, 0.6);
    }

    .form-submit {
        width: 100%;
        background: var(--teal);
        color: var(--harbor-white-50);
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 16px;
        padding: 16px 32px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        margin-top: 20px;
        transition: all 0.25s;
        letter-spacing: 0.2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .form-submit:hover {
        background: var(--teal-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(232, 35, 31, 0.35);
    }

    .form-submit svg {
        transition: transform 0.2s;
    }

    .form-submit:hover svg {
        transform: translateX(4px);
    }

    .form-footer-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 12px;
        color: var(--muted);
        margin-top: 14px;
        font-weight: 300;
    }

    .form-footer-note svg {
        color: var(--teal);
        flex-shrink: 0;
    }

    /* CTA SECTION */
    .hbr-wrapper-section {
        width: 100%;
        padding: 80px 0px;
        position: relative;
        overflow: hidden;
    }

    .hbr-wrapper-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(232, 35, 31, .045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(232, 35, 31, .045) 1px, transparent 1px);
        background-size: 72px 72px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
        -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
        pointer-events: none;
        z-index: 0;
    }

    .hbr-wrapper-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 900px;
        height: 500px;
        background: radial-gradient(ellipse at center,
                rgba(232, 35, 31, .13) 0%,
                rgba(192, 26, 23, .06) 40%,
                transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .hbr-container-inner {
        position: relative;
        z-index: 1;
        margin: 0 auto;
    }

    .hbr-panel-card {
        background: linear-gradient(145deg,
                rgba(37, 36, 33, .95) 0%,
                rgba(22, 22, 20, .98) 60%,
                rgba(14, 13, 12, 1) 100%);
        border: 1px solid rgba(232, 35, 31, .18);
        border-radius: 28px;
        padding: 72px 64px;
        position: relative;
        overflow: hidden;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, .03) inset,
            0 32px 80px rgba(0, 0, 0, .55),
            0 0 60px rgba(232, 35, 31, .08);
    }

    .hbr-panel-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(232, 35, 31, .6) 30%,
                rgba(255, 107, 107, .8) 50%,
                rgba(232, 35, 31, .6) 70%,
                transparent);
    }

    .hbr-panel-card::after {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 380px;
        height: 380px;
        background: radial-gradient(circle,
                rgba(232, 35, 31, .12) 0%,
                transparent 65%);
        pointer-events: none;
    }

    .hbr-grain-overlay {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
        opacity: .5;
    }

    .hbr-body-content {
        position: relative;
        z-index: 1;
    }

    .hbr-tag-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 35, 31, .1);
        border: 1px solid rgba(232, 35, 31, .22);
        border-radius: 100px;
        padding: 5px 16px 5px 10px;
        font-size: 11.5px;
        font-weight: 500;
        color: var(--harbor-red-300);
        letter-spacing: .5px;
        margin-bottom: 32px;
    }

    .hbr-dot-pulse {
        width: 6px;
        height: 6px;
        background: var(--harbor-red-400);
        border-radius: 50%;
        animation: hbr-anim-pulse 2.2s ease-in-out infinite;
    }

    @keyframes hbr-anim-pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .35;
            transform: scale(1.6);
        }
    }

    .hbr-title-headline {
        font-size: clamp(38px, 5.5vw, 68px);
        font-weight: 800;
        line-height: 1.03;
        letter-spacing: -2.5px;
        margin-bottom: 24px;
        max-width: 680px;
    }

    .hbr-title-headline .hbr-accent-word {
        position: relative;
        display: inline-block;
        color: var(--harbor-red-400);
    }

    .hbr-title-headline .hbr-accent-word::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--harbor-red-500), var(--harbor-red-300), var(--harbor-red-500));
        border-radius: 2px;
        animation: hbr-anim-shimmer 3s ease-in-out infinite;
        background-size: 200% 100%;
    }

    @keyframes hbr-anim-shimmer {
        0% {
            background-position: -200% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    .hbr-text-subtitle {
        font-size: 17px;
        font-weight: 300;
        color: var(--harbor-dark-300);
        line-height: 1.75;
        max-width: 500px;
        margin-bottom: 48px;
    }

    .hbr-group-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 52px;
    }

    .hbr-btn-primary {
        font-weight: 700;
        font-size: 15px;
        letter-spacing: .2px;
        color: var(--harbor-white-50);
        background: var(--harbor-red-400);
        border: 1px solid var(--harbor-red-400);
        padding: 14px 32px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: background .2s, border-color .2s, transform .18s, box-shadow .18s;
        white-space: nowrap;
        position: relative;
        overflow: hidden;
    }

    .hbr-btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 60%);
        opacity: 0;
        transition: opacity .2s;
    }

    .hbr-btn-primary:hover {
        background: var(--harbor-red-300);
        border-color: var(--harbor-red-300);
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(232, 35, 31, .38), 0 2px 8px rgba(0, 0, 0, .3);
        color: var(--harbor-white-50);
        text-decoration: none;
    }

    .hbr-btn-primary:hover::before {
        opacity: 1;
    }

    .hbr-btn-primary:active {
        transform: translateY(0);
    }

    .hbr-icon-arrow {
        width: 16px;
        height: 16px;
        transition: transform .2s;
    }

    .hbr-btn-primary:hover .hbr-icon-arrow {
        transform: translateX(4px);
    }

    .hbr-btn-ghost {
        font-weight: 400;
        font-size: 15px;
        color: var(--harbor-white-600);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, .14);
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: color .2s, border-color .2s, background .2s;
        white-space: nowrap;
    }

    .hbr-btn-ghost:hover {
        color: var(--harbor-white-100);
        border-color: rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .05);
        text-decoration: none;
    }

    .hbr-btn-ghost svg {
        width: 16px;
        height: 16px;
    }

    .hbr-row-trust {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hbr-cluster-avatars {
        display: flex;
        align-items: center;
    }

    .hbr-item-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid var(--harbor-dark-700);
        background: var(--harbor-dark-500);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 700;
        color: var(--harbor-white-300);
        margin-left: -8px;
        flex-shrink: 0;
    }

    .hbr-item-avatar:first-child {
        margin-left: 0;
    }

    .hbr-item-avatar:nth-child(1) {
        background: #3a2a2a;
    }

    .hbr-item-avatar:nth-child(2) {
        background: #2a2e3a;
    }

    .hbr-item-avatar:nth-child(3) {
        background: #2a3a2e;
    }

    .hbr-item-avatar:nth-child(4) {
        background: #3a362a;
    }

    .hbr-item-avatar:nth-child(5) {
        background: #2a2a3a;
    }

    .hbr-label-count {
        font-size: 13px;
        color: var(--harbor-dark-300);
        font-weight: 300;
        margin-left: 6px;
    }

    .hbr-label-count strong {
        color: var(--harbor-white-400);
        font-weight: 500;
    }

    .hbr-divider-sep {
        width: 1px;
        height: 16px;
        background: rgba(255, 255, 255, .1);
        margin: 0 4px;
    }

    .hbr-cluster-stars {
        display: flex;
        gap: 2px;
    }

    .hbr-cluster-stars svg {
        width: 13px;
        height: 13px;
        color: var(--harbor-red-400);
    }

    .hbr-label-rating {
        font-size: 13px;
        color: var(--harbor-dark-300);
        font-weight: 300;
    }

    .hbr-label-rating strong {
        color: var(--harbor-white-400);
        font-weight: 500;
    }

    .hbr-panel-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hbr-stack-metrics {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 320px;
    }

    .hbr-card-metric {
        background: rgba(14, 13, 12, .85);
        border: 1px solid rgba(232, 35, 31, .14);
        border-radius: 14px;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        backdrop-filter: blur(12px);
        transition: border-color .3s, transform .3s;
        animation: hbr-anim-float 4s ease-in-out infinite;
    }

    .hbr-card-metric:nth-child(2) {
        animation-delay: -1.3s;
        animation-duration: 4.5s;
    }

    .hbr-card-metric:nth-child(3) {
        animation-delay: -2.6s;
        animation-duration: 5s;
    }

    @keyframes hbr-anim-float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    .hbr-card-metric:hover {
        border-color: rgba(232, 35, 31, .3);
        transform: translateY(-4px) !important;
    }

    .hbr-box-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(232, 35, 31, .1);
        border: 1px solid rgba(232, 35, 31, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hbr-box-icon svg {
        width: 20px;
        height: 20px;
        color: var(--harbor-red-400);
    }

    .hbr-text-metabody {
        flex: 1;
    }

    .hbr-text-metalabel {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--harbor-dark-400);
        font-weight: 500;
        margin-bottom: 3px;
    }

    .hbr-text-metavalue {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--harbor-white-50);
        line-height: 1.1;
    }

    .hbr-badge-delta {
        font-size: 11.5px;
        font-weight: 500;
        color: #4ade80;
        background: rgba(74, 222, 128, .1);
        border: 1px solid rgba(74, 222, 128, .2);
        border-radius: 100px;
        padding: 2px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hbr-badge-delta.hbr-delta-down {
        color: var(--harbor-red-300);
        background: rgba(232, 35, 31, .1);
        border-color: rgba(232, 35, 31, .2);
    }

    .hbr-chart-sparkline {
        display: flex;
        align-items: flex-end;
        gap: 3px;
        height: 28px;
        margin-top: 8px;
    }

    .hbr-bar-spark {
        flex: 1;
        border-radius: 2px 2px 0 0;
        background: rgba(232, 35, 31, .3);
        transition: background .2s;
        min-width: 6px;
    }

    .hbr-bar-spark.hbr-bar-active {
        background: var(--harbor-red-400);
    }

    .hbr-bar-spark:hover {
        background: var(--harbor-red-300);
    }

    .hbr-badge-live {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(74, 222, 128, .08);
        border: 1px solid rgba(74, 222, 128, .2);
        border-radius: 100px;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 500;
        color: #4ade80;
        margin-bottom: 16px;
        letter-spacing: .4px;
    }

    .hbr-dot-live {
        width: 6px;
        height: 6px;
        background: #4ade80;
        border-radius: 50%;
        animation: hbr-anim-pulse 1.8s ease-in-out infinite;
    }

    .align-items-center {
        align-items: center;
    }

    /* -------------------------------------------------------------------------------------- FOOTER SECTION */
    .dh-footer {
        background: #0e0d0c;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: #b8b7b3;
        padding: 60px 0px 20px;
        overflow-x: hidden;
    }
    
    .footer-cta {
        padding: 0px 0px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .footer-cta-left {}

    .footer-cta-sub {
        font-size: 13.5px;
        font-weight: 400;
        color: var(--harbor-white-600);
        letter-spacing: 0.2px;
        margin-bottom: 10px;
    }

    .footer-cta-email {
        font-size: 60px;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        color: var(--harbor-white-50);
        text-decoration: none;
        display: inline-block;
        transition: color 0.25s;
        position: relative;
    }

    .footer-cta-email::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -12px;
        height: 3px;
        width: 0;
        background: var(--harbor-red-400);
        border-radius: 2px;
        transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-cta-email:hover {
        color: var(--harbor-white-100);
    }

    .footer-cta-email:hover::after {
        width: 100%;
    }

    .footer-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 22px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
        color: var(--harbor-white-100);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .footer-cta-btn:hover {
        background: var(--harbor-red-400);
        border-color: var(--harbor-red-400);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--harbor-shadow-accent);
    }

    .footer-cta-btn-icon {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.25s;
    }

    .footer-cta-btn:hover .footer-cta-btn-icon {
        background: rgba(255, 255, 255, 0.22);
    }

    .footer-cta-btn-icon svg {
        width: 13px;
        height: 13px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .dh-brand-logo img {
        width: 140px;
        height: auto;
        margin-bottom: 20px;
    }

    .dh-logo-mark svg {
        display: block;
    }

    .dh-logo-text {
        font-size: 18px;
        font-weight: 700;
        color: #faf9f8;
        letter-spacing: -0.3px;
    }

    .dh-brand-desc {
        font-size: 13.5px;
        line-height: 1.75;
        color: #8a8984;
        max-width: 270px;
        margin-bottom: 28px;
        font-weight: 300;
    }

    .dh-contact-block {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dh-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .dh-contact-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: rgba(232, 35, 31, 0.12);
        border: 1px solid rgba(232, 35, 31, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .dh-contact-icon svg {
        display: block;
    }

    .dh-contact-text {
        display: flex;
        flex-direction: column;
    }

    .dh-contact-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #5e5d58;
        margin-bottom: 2px;
    }

    .dh-contact-value {
        font-size: 13px;
        color: #e0dfdd;
        font-weight: 400;
        line-height: 1.4;
    }

    .dh-col-heading {
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #5e5d58;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .dh-col-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dh-col-links li a {
        color: #8a8984;
        text-decoration: none;
        font-size: 13.5px;
        font-weight: 400;
        transition: color 0.15s;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dh-col-links li a:hover {
        color: #faf9f8;
    }

    .dh-col-links li a .dh-link-arrow {
        opacity: 0;
        font-size: 11px;
        transition: opacity 0.15s;
        color: #e8231f;
    }

    .dh-col-links li a:hover .dh-link-arrow {
        opacity: 1;
    }

    .dh-social-wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dh-social-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 13px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.03);
        text-decoration: none;
        cursor: pointer;
        transition: border-color 0.15s, background 0.15s;
        color: #b8b7b3;
    }

    .dh-social-btn:hover {
        border-color: rgba(232, 35, 31, 0.3);
        background: rgba(232, 35, 31, 0.06);
        color: #faf9f8;
    }

    .dh-social-icon {
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .dh-social-name {
        font-size: 13px;
        font-weight: 500;
    }

    .dh-footer hr {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin: 40px auto 0;
    }

    .dh-footer-bottom {
        margin: 0 auto;
        padding: 30px 0px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .dh-copyright {
        font-size: 12.5px;
        color: #5e5d58;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .dh-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 3px 8px;
        border-radius: 5px;
        background: rgba(232, 35, 31, 0.1);
        color: #ff6b6b;
        border: 1px solid rgba(232, 35, 31, 0.18);
    }

    .dh-made-by {
        font-size: 12.5px;
        color: #5e5d58;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dh-made-by a {
        color: var(--harbor-red-400);
        text-decoration: none;
    }

    .dh-made-by a:hover {
        color: var(--harbor-red-300);
    }


    /* ------------------------------------------------------------------- BRAND STRIP */
    .brand-strip {
        position: relative;
        padding: 0px 10px 60px;
        overflow-x: hidden;
    }

    .brand-inner {
        display: flex;
        align-items: center;
        gap: 40px;
        background: rgba(10, 10, 10, 0.6);
        border-radius: 20px;
        padding: 30px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .brand-text {
        min-width: 220px;
        color: var(--harbor-white-400);
        font-size: 20px;
    }

    .brand-text span {
        font-size: 30px;
        font-style: italic;
        color: var(--harbor-red-500);
        font-family: var(--cursive-font);
        font-weight: 600;
    }

    .brand-slider {
        position: relative;
        overflow: hidden;
        flex: 1;
    }

    .brand-slider::before,
    .brand-slider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .brand-slider::before {
        left: 0;
        background: linear-gradient(to right,
                var(--harbor-dark-900),
                transparent);
    }

    .brand-slider::after {
        right: 0;
        background: linear-gradient(to left,
                var(--harbor-dark-900),
                transparent);
    }

    .brand-track {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: scrollLogos 20s linear infinite;
    }

    .brand-card {
        min-width: 160px;
        max-height: 80px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 18px;

        color: var(--harbor-white-300);
        font-weight: 500;
        font-size: 16px;

        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.06);

        transition: 0.3s;
    }

    .brand-card:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.06);
    }

    .brand-card img {
        max-width: 160px;
        max-height: 80px;
        object-fit: cover;
        border-radius: 15px;
        transition: 0.3s;
        filter: invert(100%) sepia(10%) grayscale(100%) brightness(85%);
    }

    .brand-card img:hover {
        filter: invert(0) sepia(0) grayscale(0) brightness(100%);
    }

    @keyframes scrollLogos {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }