.br-section {
    position: relative;
}

/* --- Animations --- */
@keyframes br-fade-up {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes br-float {

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

    25% {
        transform: translateY(-14px) rotate(8deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(14px) rotate(-8deg);
    }
}

@keyframes br-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.18;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.24;
    }
}

@keyframes br-pulse-blue {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.14;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}

@keyframes br-shimmer {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes br-scale-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.br-hero-inner {
    animation: br-fade-up 0.7s ease-out both;
    position: relative;
    width: 100%;
    text-align: center;
    height: clamp(1px, 48.959vw, 1880px);
    display: flex;
    justify-content: center;
    align-items: end;
}

.br-hero-title .orange {
    color: #f68c1f;
}

.br-hero-title .blue {
    color: #2752a2;
}

.br-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.br-hero-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    border-radius: 1rem;
    border-width: 1px;
    border-style: solid;
    padding: 1.5rem;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    width: clamp(1px, 21.875vw, 840px);
}

.br-hero-card--students {
    background-color: #fff7ed;
    border-color: rgba(246, 140, 31, 0.2);
    box-shadow: 0 3px 12px rgba(246, 140, 31, 0.15);
}

.br-hero-card--students:hover {
    background-color: #fff0dd;
    border-color: rgba(246, 140, 31, 0.3);
}

.br-hero-card--institutions {
    background-color: #eef3fb;
    border-color: rgba(39, 82, 162, 0.2);
    box-shadow: 0 3px 12px rgba(39, 82, 162, 0.15);
}

.br-hero-card--institutions:hover {
    background-color: #e3ecf8;
    border-color: rgba(39, 82, 162, 0.3);
}

.br-hero-card-icon {
    flex-shrink: 0;
    width: clamp(1px, 3.75vw, 144px);
    height: clamp(1px, 3.75vw, 144px);
}

.br-hero-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
    flex: 1;
}

.br-hero-card-label {
    font-family: "Poppins SemiBold", sans-serif;
    color: #0e0e0f;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.br-hero-card-arrow {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.br-hero-card:hover .br-hero-card-arrow {
    transform: translateX(4px);
}

.br-hero-card-arrow--orange {
    color: #f68c1f;
}

.br-hero-card-arrow--blue {
    color: #2752a2;
}

.br-hero-tagline {
    font-family: "Open Sans Regular", sans-serif;
    color: #717182;
    font-size: 13px;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .br-hero-tagline {
        font-size: 0.875rem;
        margin-top: 2rem;
    }
}

/* Hero Decorations */
.br-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    display: none;
}

@media (min-width: 768px) {
    .br-hero-decor {
        display: block;
    }
}

.br-hero-blob-orange {
    position: absolute;
    top: -8rem;
    left: -10rem;
    width: clamp(1px, 27.084vw, 1040px);
    height: clamp(1px, 27.084vw, 1040px);
    border-radius: 50%;
    background-color: #f68c1f;
    opacity: 0.18;
    filter: blur(120px);
    animation: br-pulse 12s ease-in-out infinite;
}

.br-hero-blob-blue {
    position: absolute;
    bottom: -10rem;
    right: -8rem;
    width: clamp(1px, 31.25vw, 1200px);
    height: clamp(1px, 31.25vw, 1200px);
    border-radius: 50%;
    background-color: #2752a2;
    opacity: 0.14;
    filter: blur(140px);
    animation: br-pulse-blue 14s ease-in-out infinite;
    animation-delay: 2s;
}

.br-hero-dotgrid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(39, 82, 162, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 80%);
}

.br-hero-sweep {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(125deg, transparent 0%, transparent 55%, rgba(246, 140, 31, 0.06) 60%, rgba(39, 82, 162, 0.06) 70%, transparent 80%);
}

.br-floating {
    position: absolute;
    pointer-events: none;
    animation: br-float var(--float-duration, 6s) ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.br-floating-diamond {
    display: block;
}

.br-floating-diamond.one {
    width: clamp(1px, 2.188vw, 84px);
    height: clamp(1px, 2.188vw, 84px);
}

.br-floating-diamond.two {
    width: clamp(1px, 2.916vw, 112px);
    height: clamp(1px, 2.916vw, 112px);
}

.br-floating-diamond.three {
    width: clamp(1px, 1.4584vw, 56px);
    height: clamp(1px, 1.4584vw, 56px);
}

.br-floating-diamond.four {
    width: clamp(1px, 1.875vw, 72px);
    height: clamp(1px, 1.875vw, 72px);
}

.br-floating-diamond.five {
    width: clamp(1px, 1.5625vw, 64px);
    height: clamp(1px, 1.5625vw, 64px);
}

.br-floating-diamond.six {
    width: clamp(1px, 1.25vw, 48px);
    height: clamp(1px, 1.25vw, 48px);
}

/* ============================================
   CONTEXT BRIDGE SECTION
   ============================================ */

.br-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.br-btn:hover {
    text-decoration: none;
}

.br-btn--orange {
    background-color: #f68c1f;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(246, 140, 31, 0.3);
}

.br-btn--orange:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(246, 140, 31, 0.4);
}

.br-btn--blue {
    background-color: #2752a2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(39, 82, 162, 0.3);
}

.br-btn--blue:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(39, 82, 162, 0.4);
}

.br-context-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: br-scale-in 0.8s ease-out both;
}

@media (min-width: 768px) {
    .br-context-image {
        justify-content: flex-end;
    }
}

.br-context-image img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .br-context-image img {
        width: 120%;
        max-width: none;
        transform: translateX(5%);
    }
}

/* ============================================
   TRUST SIGNALS SECTION
   ============================================ */

.br-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.br-trust-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   REINFORCED PATH SECTION
   ============================================ */
.br-paths-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.br-paths-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.br-preview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    height: clamp(1px, 36.459vw, 1700px);
}

.br-preview-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.br-preview-card:hover .br-preview-card-bg {
    transform: scale(1.04);
}

.br-preview-card-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55) 55%, transparent);
}

.br-preview-card-content {
    position: relative;
    color: #ffffff;
}


.br-preview-card-badge--students {
    background-color: #fff4e7;
    color: #f68c1f;
}

.br-preview-card-badge--institutions {
    background-color: #eaf0fa;
    color: #2752a2;
}

.br-preview-card-list {
    padding: 0;
    display: flex;
    flex-direction: column;
}


.br-preview-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.br-preview-card-bullet {
    margin-top: 9px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.br-preview-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #2752a2;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 14px;
    margin-top: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.br-preview-card-cta:hover {
    color: #2752a2;
    text-decoration: none;
}

/* --- Utility --- */
.size-full {
    width: clamp(1px, 4.167vw, 160px);
    height: clamp(1px, 4.167vw, 160px);
}

@media (max-width:767px) {
    .br-hero-inner {
        height: 100%;
    }

    .br-hero-card {
        width: 100%;
    }

    .size-full,
    .br-hero-card-icon {
        width: clamp(1px, 14.452vw, 160px);
        height: clamp(1px, 14.452vw, 160px);
    }

    .br-context-buttons .br-btn {
        width: 100%;
        font-size: clamp(1px, 3.30788vw, 44px) !important;
    }

    .br-trust-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .br-preview-card {
        height: clamp(1px, 94.83vw, 840px);
    }
}