/* =========================================================
   Developers Nepal — Homepage Design System (2026)
   Blade + Bootstrap 5 companion styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --dn-crimson: #DC143C;
    --dn-crimson-hover: #B01030;
    --dn-navy: #0F172A;
    --dn-blue: #2563EB;
    --dn-success: #16A34A;
    --dn-warning: #F59E0B;
    --dn-danger: #EF4444;
    --dn-bg: #F8FAFC;
    --dn-section: #FFFFFF;
    --dn-card: #FFFFFF;
    --dn-border: #E5E7EB;
    --dn-heading: #0F172A;
    --dn-text: #475569;
    --dn-muted: #94A3B8;
    --dn-radius: 18px;
    --dn-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --dn-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --dn-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ----- Page shell ----- */
.dn-home {
    font-family: var(--dn-font);
    color: var(--dn-text);
    background: var(--dn-bg);
    overflow-x: hidden;
}

.dn-home h1,
.dn-home h2,
.dn-home h3,
.dn-home h4,
.dn-home h5 {
    color: var(--dn-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.dn-home .container {
    max-width: 1140px;
}

/* ----- Buttons ----- */
.dn-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--dn-crimson) 0%, #e11d48 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dn-btn-primary:hover {
    background: linear-gradient(135deg, var(--dn-crimson-hover) 0%, var(--dn-crimson) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.35);
    color: #fff !important;
}

.dn-btn-primary:active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    animation: dn-ripple 0.45s ease-out;
}

.dn-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dn-navy) !important;
    border: 1.5px solid var(--dn-navy);
    border-radius: 12px;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.dn-btn-secondary:hover {
    background: var(--dn-navy);
    color: #fff !important;
    transform: translateY(-3px);
}

@keyframes dn-ripple {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ----- Section helpers ----- */
.dn-section {
    padding: 5rem 0;
    background: var(--dn-section);
}

.dn-section--muted {
    background: var(--dn-bg);
}

.dn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dn-crimson);
    margin-bottom: 0.75rem;
}

.dn-section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
}

.dn-section-sub {
    color: var(--dn-text);
    max-width: 36rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ----- Cards ----- */
.dn-card {
    background: var(--dn-card);
    border: 1px solid var(--dn-border);
    border-radius: var(--dn-radius);
    box-shadow: var(--dn-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.dn-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dn-shadow-lg);
}

/* ----- Reveal animations ----- */
.dn-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.dn-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dn-reveal-delay-1 { transition-delay: 0.1s; }
.dn-reveal-delay-2 { transition-delay: 0.2s; }
.dn-reveal-delay-3 { transition-delay: 0.3s; }
.dn-reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   HERO
   ========================================================= */
.dn-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    background: var(--dn-bg);
    overflow: visible;
}

.dn-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: dn-float 10s ease-in-out infinite;
}

.dn-hero__blob--1 {
    width: 420px;
    height: 420px;
    background: rgba(220, 20, 60, 0.12);
    top: -120px;
    right: 8%;
}

.dn-hero__blob--2 {
    width: 360px;
    height: 360px;
    background: rgba(37, 99, 235, 0.12);
    bottom: -80px;
    left: -60px;
    animation-delay: -3s;
}

.dn-hero__blob--3 {
    width: 220px;
    height: 220px;
    background: rgba(15, 23, 42, 0.06);
    top: 40%;
    left: 45%;
    animation-delay: -6s;
}

@keyframes dn-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.05); }
}

.dn-hero .container {
    position: relative;
    z-index: 1;
}

.dn-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--dn-border);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dn-navy);
    box-shadow: var(--dn-shadow);
    margin-bottom: 1.25rem;
}

.dn-hero__badge i {
    color: var(--dn-success);
}

.dn-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--dn-heading);
}

.dn-hero__title span {
    color: var(--dn-crimson);
}

.dn-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dn-text);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

/* Search bar */
.dn-search {
    background: #fff;
    border: 1px solid var(--dn-border);
    border-radius: 18px;
    padding: 0.55rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 5;
    overflow: visible;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.dn-search:focus-within {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.1),
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 0 24px rgba(220, 20, 60, 0.08);
}

.dn-search .form-control,
.dn-search .form-select {
    border: none;
    box-shadow: none !important;
    background: transparent;
    font-size: 0.95rem;
    color: var(--dn-heading);
    min-height: 3rem;
}

.dn-search .form-control::placeholder {
    color: var(--dn-muted);
}

.dn-search__divider {
    width: 1px;
    background: var(--dn-border);
    align-self: stretch;
    margin: 0.4rem 0;
}

/* Stacked readable search */
.dn-search--stacked {
    padding: 1.25rem 1.35rem 1.35rem;
}

.dn-search__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dn-navy);
    margin-bottom: 0.4rem;
}

.dn-search__field {
    margin-bottom: 1rem;
}

.dn-search__input {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--dn-bg);
    border: 1px solid var(--dn-border);
    border-radius: 12px;
    padding: 0.35rem 0.9rem;
}

.dn-search__input i {
    color: var(--dn-muted);
}

.dn-search__input .form-control {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
    min-height: 2.75rem;
    padding-left: 0;
}

.dn-search--stacked .form-select {
    border: 1px solid var(--dn-border);
    border-radius: 12px;
    min-height: 2.85rem;
    background-color: var(--dn-bg);
    font-size: 0.95rem;
    color: var(--dn-heading);
}

.dn-search--stacked .form-select:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.dn-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.15rem;
    position: relative;
    z-index: 1;
}

.dn-popular__label {
    font-size: 0.85rem;
    color: var(--dn-muted);
    font-weight: 500;
}

.dn-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--dn-border);
    color: var(--dn-text);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dn-chip:hover {
    border-color: var(--dn-crimson);
    color: var(--dn-crimson);
    transform: translateY(-2px);
    box-shadow: var(--dn-shadow);
}

/* Hero illustration */
.dn-hero-art {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.dn-hero-art svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.12));
}

.dn-hero-float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--dn-border);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: var(--dn-shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dn-navy);
    animation: dn-float 7s ease-in-out infinite;
}

.dn-hero-float i {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.12);
    color: var(--dn-success);
}

.dn-hero-float--1 {
    top: 8%;
    left: -4%;
}

.dn-hero-float--2 {
    bottom: 18%;
    right: -2%;
    animation-delay: -2.5s;
}

.dn-hero-float--2 i {
    background: rgba(37, 99, 235, 0.12);
    color: var(--dn-blue);
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.dn-cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.dn-cat-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--dn-crimson);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.dn-cat-card:hover .dn-cat-card__icon {
    transform: scale(1.08);
}

.dn-cat-card__title {
    font-weight: 700;
    color: var(--dn-heading);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.dn-cat-card__meta {
    font-size: 0.85rem;
    color: var(--dn-muted);
}

.dn-cat-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.dn-step {
    padding: 1.75rem;
    position: relative;
}

.dn-step__num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--dn-navy);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
}

.dn-step__icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: rgba(220, 20, 60, 0.2);
}

.dn-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.dn-step p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--dn-text);
}

/* =========================================================
   FEATURED PROFESSIONALS
   ========================================================= */
.dn-pro-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dn-pro-card__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.dn-pro-card__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dn-pro-card__avatar-fallback {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dn-crimson), var(--dn-blue));
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dn-pro-card__name {
    font-weight: 700;
    color: var(--dn-heading);
    margin: 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dn-pro-card__name .bi-patch-check-fill {
    color: var(--dn-blue);
    font-size: 1rem;
}

.dn-pro-card__role {
    font-size: 0.88rem;
    color: var(--dn-text);
    margin: 0.15rem 0 0;
}

.dn-pro-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--dn-muted);
    margin-bottom: 0.9rem;
}

.dn-pro-card__meta i {
    color: var(--dn-crimson);
}

.dn-pro-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}

.dn-skill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--dn-bg);
    border: 1px solid var(--dn-border);
    color: var(--dn-text);
}

.dn-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.dn-status--available {
    background: rgba(22, 163, 74, 0.1);
    color: var(--dn-success);
}

.dn-status--busy {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.dn-status--off {
    background: rgba(148, 163, 184, 0.18);
    color: var(--dn-muted);
}

.dn-pro-card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.dn-pro-card .dn-btn-primary {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.2);
}

/* =========================================================
   WHY US
   ========================================================= */
.dn-why {
    padding: 1.5rem;
    text-align: left;
}

.dn-why__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--dn-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dn-why__icon--crimson {
    background: rgba(220, 20, 60, 0.1);
    color: var(--dn-crimson);
}

.dn-why__icon--green {
    background: rgba(22, 163, 74, 0.1);
    color: var(--dn-success);
}

.dn-why h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.dn-why p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dn-text);
}

/* =========================================================
   STATS
   ========================================================= */
.dn-stats {
    background: var(--dn-navy);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.dn-stats::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.15);
    filter: blur(80px);
    top: -120px;
    right: -80px;
}

.dn-stats::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    filter: blur(80px);
    bottom: -100px;
    left: -60px;
}

.dn-stats .container {
    position: relative;
    z-index: 1;
}

.dn-stat {
    text-align: center;
    padding: 1rem;
}

.dn-stat__value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    color: #fff;
}

.dn-stat__label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.dn-quote {
    padding: 1.75rem;
}

.dn-quote__icon {
    font-size: 1.75rem;
    color: rgba(220, 20, 60, 0.25);
    margin-bottom: 0.75rem;
}

.dn-quote__stars {
    color: var(--dn-warning);
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.08em;
}

.dn-quote__text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--dn-text);
    margin-bottom: 1.25rem;
}

.dn-quote__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dn-quote__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dn-navy), var(--dn-blue));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dn-quote__name {
    font-weight: 700;
    color: var(--dn-heading);
    font-size: 0.92rem;
    margin: 0;
}

.dn-quote__role {
    font-size: 0.8rem;
    color: var(--dn-muted);
    margin: 0;
}

/* =========================================================
   CTA
   ========================================================= */
.dn-cta {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(220, 20, 60, 0.08), transparent 55%),
        radial-gradient(ellipse 40% 50% at 5% 90%, rgba(37, 99, 235, 0.08), transparent 50%),
        var(--dn-bg);
}

.dn-cta__panel {
    background: #fff;
    border: 1px solid var(--dn-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--dn-shadow);
    height: 100%;
}

.dn-cta__panel h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.dn-cta__panel p {
    color: var(--dn-text);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.dn-cta__panel--hire {
    background: var(--dn-navy);
    border-color: transparent;
}

.dn-cta__panel--hire h3,
.dn-cta__panel--hire p {
    color: #fff;
}

.dn-cta__panel--hire p {
    color: rgba(255, 255, 255, 0.7);
}

.dn-cta__panel--hire .dn-btn-secondary {
    border-color: #fff;
    color: #fff !important;
}

.dn-cta__panel--hire .dn-btn-secondary:hover {
    background: #fff;
    color: var(--dn-navy) !important;
}

/* =========================================================
   FOOTER (homepage-aware layout class)
   ========================================================= */
.public-footer.dn-footer {
    background: var(--dn-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.75rem;
    margin-top: 0;
}

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

.dn-footer a:hover {
    color: #fff;
}

.dn-footer__brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.dn-footer__brand i {
    color: var(--dn-crimson);
}

.dn-footer__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 18rem;
    margin-bottom: 1.25rem;
}

.dn-footer__title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.dn-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dn-footer__list li {
    margin-bottom: 0.55rem;
}

.dn-footer__list a {
    font-size: 0.9rem;
}

.dn-footer__social {
    display: flex;
    gap: 0.65rem;
}

.dn-footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dn-footer__social a:hover {
    background: rgba(220, 20, 60, 0.9);
    border-color: transparent;
    color: #fff;
}

.dn-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
    .dn-hero {
        padding: 3rem 0 3.5rem;
        text-align: center;
    }

    .dn-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .dn-popular {
        justify-content: center;
    }

    .dn-hero-art {
        margin-top: 2.5rem;
        max-width: 360px;
    }

    .dn-search__divider {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .dn-section {
        padding: 3.5rem 0;
    }

    .dn-cta__panel {
        padding: 1.75rem;
    }

    .dn-hero-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dn-reveal,
    .dn-card,
    .dn-btn-primary,
    .dn-btn-secondary,
    .dn-hero__blob,
    .dn-hero-float {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Free CV Maker homepage blocks ===== */
.dn-cv-hero {
    position: relative;
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(220, 20, 60, .22), transparent 45%),
        radial-gradient(ellipse at 80% 0%, rgba(37, 99, 235, .2), transparent 40%),
        linear-gradient(135deg, #0F172A 0%, #1e293b 55%, #3f1d2e 100%);
    color: #fff;
    overflow: hidden;
}

.dn-cv-hero__title {
    font-family: Outfit, 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: .75rem 0 1rem;
    color: #fff;
}

.dn-cv-hero__subtitle {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
    max-width: 34rem;
    margin-bottom: 1.5rem;
}

.dn-eyebrow--light {
    color: #fecaca;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.dn-btn-secondary--light {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .45);
}

.dn-btn-secondary--light:hover {
    background: #fff;
    color: #0F172A !important;
}

.dn-cv-hero__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem .85rem;
    max-width: 28rem;
}

.dn-cv-hero__perks li {
    font-weight: 600;
    font-size: .92rem;
    color: rgba(255, 255, 255, .9);
}

.dn-cv-hero__art {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.dn-cv-hero__art svg {
    width: 100%;
    height: auto;
    display: block;
}

.dn-cv-why {
    height: 100%;
    padding: 1.35rem 1.25rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.dn-cv-why:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .1);
}

.dn-cv-why__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 20, 60, .12), rgba(37, 99, 235, .12));
    color: #DC143C;
    margin-bottom: .85rem;
    font-size: 1.15rem;
}

.dn-cv-why h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.dn-cv-why p {
    margin: 0;
    color: var(--muted, #5c6b82);
    font-size: .9rem;
}

@media (max-width: 575.98px) {
    .dn-cv-hero {
        padding: 3rem 0;
    }

    .dn-cv-hero__perks {
        grid-template-columns: 1fr;
    }
}

/* Learning videos */
.dn-learn-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.dn-learn-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.dn-learn-card__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dn-learn-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dn-learn-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dn-heading, #0f172a);
    margin: 0 0 .4rem;
}

.dn-learn-card__desc {
    font-size: .9rem;
    color: var(--dn-muted, #64748b);
    margin: 0 0 .85rem;
    line-height: 1.55;
}

.dn-learn-card__link {
    margin-top: auto;
    font-size: .88rem;
    font-weight: 600;
    color: #DC143C;
    text-decoration: none;
}

.dn-learn-card__link:hover {
    text-decoration: underline;
}


