/* Prevent horizontal scroll on home page only; no content is cut */
body:has(.landing-page) {
    overflow-x: hidden;
    max-width: 100%;
}

/* Landing Page - Light Background */
.landing-page {
    background: #f7f7f7;
    min-height: 100vh;
    padding: 0 20px 60px;
    position: relative;
    color: #111;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    max-width: 100vw;
    margin-top: 0;
    margin-bottom: -15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .landing-page {
        padding: 0 16px 40px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding: 0 12px 32px;
    }
}

.spline-temp-section {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    z-index: 0;
}

.spline-temp-canvas {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: auto;
}

.spline-temp-content {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spline-temp-content .hero-minimal-badge {
    margin: 0 0 20px 0;
}

.spline-temp-content .hero-minimal-btn {
    margin-top: 40px;
}

.spline-temp-heading {
    margin: 0;
    max-width: 760px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: -0.07em;
    color: #1d1f21;
    text-align: left;
}

.spline-temp-heading-line1,
.spline-temp-heading-line2 {
    display: block;
}

.spline-temp-heading-line2 {
    margin-top: 2px;
}

.spline-temp-btn {
    margin-top: 10px;
    padding: 12px 15px;
    font-size: 18px;
    pointer-events: auto;
}

.site-nav {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    margin-top: 0;
    background: transparent;
    z-index: 1000;
    transition: background-color 0.25s ease;
    overflow: visible;
}

.site-nav.scrolled {
    background: #f7f7f7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Fill extends 15px above and 15px below the navbar when scrolled */
.site-nav.scrolled::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    bottom: -15px;
    background: #f7f7f7;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-nav {
        top: 8px;
    }
    .site-nav.scrolled::before {
        top: -8px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .site-nav {
        top: 6px;
    }
    .site-nav.scrolled::before {
        top: -6px;
        bottom: -6px;
    }
}

.spline-temp-section + .hero-minimal {
    margin-top: 0 !important;
}

.hero-minimal-cta {
    margin-top: 60px;
}

.hero-minimal-cta .hero-minimal-btn {
    margin-top: 0;
}

/* Global section rhythm: exactly 100px between top-level blocks */
.landing-page > * + * {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .landing-page > * + * {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .landing-page > * + * {
        margin-top: 50px;
    }
}

/* Minimal hero from reference */
.hero-minimal {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-minimal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 30px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1d1f21;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(255, 215, 0, 0.3) 100%);
}

.hero-minimal-heading {
    margin: 20px 0 0 0;
    max-width: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 50px;
    letter-spacing: -0.07em;
    line-height: 130%;
    color: #1d1f21;
    white-space: nowrap;
}

.hero-minimal-btn {
    position: relative;
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-radius: 16px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: #1d1f21;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
}

.hero-minimal-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(255, 215, 0, 0.6) 100%);
    z-index: -1;
}

.hero-minimal-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(255, 215, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.hero-minimal-btn:hover::after {
    opacity: 1;
}

.hero-minimal-btn:hover {
    color: #1d1f21;
    text-decoration: none;
}

.hero-corporate-preview {
    width: min(1140px, calc(100vw - 200px));
    margin-top: 32px;
}

.hero-corporate-mirror {
    width: min(1140px, calc(100vw - 200px));
    margin-top: 48px;
    margin-bottom: 0;
    border: 5px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(#f7f7f7, #f7f7f7) padding-box,
        linear-gradient(90deg, rgba(255, 215, 0, 0.6) 0%, rgba(247, 247, 247, 0.6) 100%) border-box;
    background-size: 100% 100%, 300% 300%;
    animation: heroCorporateBorderFlow 12s linear infinite;
    z-index: 1;
}

.hero-corporate-mirror .container.mt-4 {
    margin-top: 0 !important;
    padding: 28px 28px 0px 28px;
    overflow: visible;
}

.hero-corporate-mirror .corporate-index-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.07em;
    color: #1d1f21 !important;
    text-align: left;
}

.hero-corporate-mirror .corporate-index-subheading {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: rgba(29, 31, 33, 0.8) !important;
    text-align: left;
}

.hero-corporate-mirror .corporate-problem-card,
.hero-corporate-mirror .corporate-problem-card__card-header,
.hero-corporate-mirror .corporate-problem-card__innovation-type,
.hero-corporate-mirror .corporate-problem-card__description,
.hero-corporate-mirror .corporate-problem-card__view-link,
.hero-corporate-mirror .corporate-problem-card__adopted-copy {
    text-align: left;
}

.hero-corporate-mirror .corporate-problem-card__footer {
    justify-content: flex-start;
    gap: 12px;
}

.hero-corporate-mirror .corporate-problem-card__adopted-copy {
    margin-left: 0;
}

.hero-corporate-mirror .corporate-problem-card a,
.hero-corporate-mirror .corporate-problem-card button,
.hero-corporate-mirror .corporate-problem-card form {
    pointer-events: none;
    cursor: default;
}

@keyframes heroCorporateBorderFlow {
    0% {
        background-position: 0 0, 0% 50%;
    }
    50% {
        background-position: 0 0, 100% 50%;
    }
    100% {
        background-position: 0 0, 200% 50%;
    }
}

.hero-corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hero-corporate-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-corporate-company {
    margin: 0 0 8px 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(29, 31, 33, 0.7);
}

.hero-corporate-title {
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1d1f21;
}

.hero-corporate-description {
    margin: 0 0 12px 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(29, 31, 33, 0.8);
}

.hero-corporate-link {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1d1f21;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.leaders-ticker-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.leaders-ticker-heading {
    margin: 0 0 24px 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(29, 31, 33, 0.8);
    text-align: center;
}

.leaders-ticker {
    width: 100%;
    overflow: hidden;
}

.leaders-ticker-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: leadersTickerMove 22s linear infinite;
}

.leaders-ticker-item {
    width: 180px;
    height: 80px;
    border-radius: 12px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.leaders-ticker-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.leaders-ticker-item--zoom img {
    transform: scale(1.35);
}

.leaders-ticker-item--zoom-cka img {
    transform: scale(1.7);
}

@keyframes leadersTickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 768px) {
    .leaders-ticker-section {
        padding: 0 16px;
    }
    .leaders-ticker-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .leaders-ticker-item {
        width: 140px;
        height: 64px;
        padding: 8px;
    }
    .leaders-ticker-track {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .leaders-ticker-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .leaders-ticker-item {
        width: 110px;
        height: 52px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .hero-minimal {
        margin-left: -16px;
        margin-right: -16px;
        padding-top: 40px;
    }
    .hero-minimal-cta {
        margin-top: 36px;
    }
    .hero-minimal-btn {
        padding: 16px 24px;
        font-size: 18px;
        margin-top: 0;
    }

    /* Spline hero: left-aligned content, smaller type */
    .spline-temp-content {
        left: 24px;
        right: 24px;
        align-items: flex-start;
        text-align: left;
    }
    .spline-temp-heading {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.1;
        text-align: left;
    }
    .spline-temp-content .hero-minimal-badge {
        margin-bottom: 16px;
        font-size: 14px;
        padding: 8px 12px;
    }
    .spline-temp-content .hero-minimal-btn {
        margin-top: 24px;
    }
    .spline-temp-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-minimal {
        margin-left: 0;
        margin-right: 0;
        padding-top: 32px;
    }
    .hero-minimal-cta {
        margin-top: 28px;
    }
    .hero-minimal-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .hero-corporate-preview {
        width: min(1140px, calc(100vw - 40px));
    }

    .hero-corporate-mirror {
        width: min(1140px, calc(100vw - 40px));
    }

    .hero-corporate-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-corporate-mirror {
        width: calc(100% - 32px);
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 24px;
        border-width: 3px;
        border-radius: 16px;
    }
    .hero-corporate-mirror .container.mt-4 {
        padding: 20px 16px 16px 16px;
    }
    .hero-corporate-mirror .d-flex.mb-4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    .hero-corporate-mirror .corporate-index-heading {
        font-size: 26px;
        margin-bottom: 6px;
    }
    .hero-corporate-mirror .corporate-index-subheading {
        font-size: 15px;
        line-height: 1.35;
    }
    .hero-corporate-mirror .corporate-problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 0;
    }
    .hero-corporate-mirror .corporate-problem-card {
        height: auto;
        min-height: 280px;
        padding: 14px 16px;
    }
    .hero-corporate-mirror .corporate-problem-card__top {
        gap: 8px;
    }
    .hero-corporate-mirror .corporate-problem-card__logo,
    .hero-corporate-mirror .corporate-problem-card__logo-placeholder {
        height: 32px;
        min-width: 32px;
        font-size: 16px;
    }
    .hero-corporate-mirror .corporate-problem-card__brand-divider {
        height: 32px;
    }
    .hero-corporate-mirror .corporate-problem-card__card-header {
        font-size: 17px;
    }
    .hero-corporate-mirror .corporate-problem-card__view-link {
        margin-left: 0;
        font-size: 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__innovation-type {
        margin-top: 12px;
        font-size: 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__tags {
        margin-top: 8px;
        gap: 8px;
    }
    .hero-corporate-mirror .corporate-problem-card__tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    .hero-corporate-mirror .corporate-problem-card__description {
        margin-top: 12px;
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    .hero-corporate-mirror .corporate-problem-card__footer {
        padding-top: 12px;
        margin-top: auto;
        gap: 8px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopt-btn {
        padding: 10px 14px;
        font-size: 15px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopt-icon {
        width: 14px;
        height: 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopted-copy {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-corporate-mirror {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        border-width: 2px;
        border-radius: 12px;
    }
    .hero-corporate-mirror .container.mt-4 {
        padding: 16px 12px 12px 12px;
    }
    .hero-corporate-mirror .d-flex.mb-4 {
        gap: 10px;
        margin-bottom: 16px;
    }
    .hero-corporate-mirror .corporate-index-heading {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .hero-corporate-mirror .corporate-index-subheading {
        font-size: 14px;
    }
    .hero-corporate-mirror .corporate-problems-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }
    .hero-corporate-mirror .corporate-problem-card {
        min-height: 260px;
        padding: 12px 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__logo,
    .hero-corporate-mirror .corporate-problem-card__logo-placeholder {
        height: 28px;
        min-width: 28px;
        font-size: 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__brand-divider {
        height: 28px;
    }
    .hero-corporate-mirror .corporate-problem-card__card-header {
        font-size: 15px;
    }
    .hero-corporate-mirror .corporate-problem-card__view-link {
        font-size: 13px;
    }
    .hero-corporate-mirror .corporate-problem-card__innovation-type {
        margin-top: 10px;
        font-size: 13px;
    }
    .hero-corporate-mirror .corporate-problem-card__tags {
        margin-top: 6px;
        gap: 6px;
    }
    .hero-corporate-mirror .corporate-problem-card__tag {
        padding: 5px 10px;
        font-size: 11px;
    }
    .hero-corporate-mirror .corporate-problem-card__description {
        margin-top: 10px;
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    .hero-corporate-mirror .corporate-problem-card__footer {
        padding-top: 10px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopt-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopt-icon {
        width: 12px;
        height: 12px;
    }
    .hero-corporate-mirror .corporate-problem-card__adopted-copy {
        font-size: 12px;
    }
}

/* Top Right Navigation Links */
.top-right-links {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    gap: 24px;
    z-index: 10;
}

.nav-link-text {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-text:hover {
    color: #c4a800;
    text-decoration: none;
}

/* Main Container */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 80px;
}

/* Hero Section (Left Side) */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.5px;
}

/* Main Heading */
.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin: 0;
    letter-spacing: -1px;
}

/* Description Text */
.description-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    max-width: 540px;
}

/* Call to Action Button - Yellow */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffde00;
    color: #000000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 222, 0, 0.5);
    color: #000000;
    text-decoration: none;
}

.plus-icon {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

/* Features Section (Right Side) */
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(248, 220, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Problems Section */
.problems-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.problems-container {
    width: 100%;
}

.problems-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.problems-subheading {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .problems-section {
        padding: 0 16px;
    }
    .problems-heading {
        font-size: 28px;
    }
    .problems-subheading {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 20px !important;
    }
    .program-card {
        padding: 20px 18px !important;
    }
    .program-card-title {
        font-size: 1.1rem !important;
    }
    .program-card-description {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .problems-section {
        padding: 0 12px;
    }
    .problems-heading {
        font-size: 24px;
    }
    .problems-subheading {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .programs-grid {
        gap: 12px !important;
        margin-top: 16px !important;
    }
    .program-card {
        padding: 16px 14px !important;
    }
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.new-project-btn {
    background: #ffde00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.new-project-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
    color: #000000;
    text-decoration: none;
}

/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.project-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #ffde00;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 222, 0, 0.2);
}

.edit-btn {
    color: #ffde00;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
    text-decoration: none;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.project-title-section {
    flex: 1;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.project-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.open-btn {
    background: transparent;
    border: 1px solid rgba(255, 222, 0, 0.3);
    color: #ffde00;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.open-btn:hover {
    background: rgba(255, 222, 0, 0.1);
    border-color: #ffde00;
    color: #ffde00;
    text-decoration: none;
}

/* Workflow Phases */
.workflow-phases {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
    padding: 20px 0;
    position: relative;
}

.phase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.phase-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    transition: all 0.3s ease;
}

.phase-item.active .phase-icon {
    background: #ffde00;
    border-color: #ffde00;
    color: #000000;
    box-shadow: 0 0 0 4px rgba(255, 222, 0, 0.2);
}

.phase-item.completed .phase-icon {
    background: rgba(255, 222, 0, 0.2);
    border-color: #ffde00;
    color: #ffde00;
}

.phase-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.phase-item.active .phase-name {
    color: #ffde00;
    font-weight: 600;
}

.phase-item.completed .phase-name {
    color: rgba(255, 222, 0, 0.7);
}

.phase-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    position: relative;
    top: -24px;
    z-index: 1;
    transition: background 0.3s ease;
}

.phase-connector.completed {
    background: rgba(255, 222, 0, 0.3);
}

/* Project Progress Bar */
.project-progress {
    margin-top: 16px;
}

.progress-bar-full {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #ffde00;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Login Prompt */
.login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.login-prompt i {
    font-size: 64px;
    color: #f8dc00;
    margin-bottom: 24px;
}

.login-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ffde00;
    color: #ffde00;
}

.cta-button.secondary:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
}

/* Dashboard Problems Grid - Full Dashboard Layout */
.dashboard-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dashboard-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-card:hover {
    border-color: rgba(255, 222, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dashboard-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-card-placeholder {
    background: #0a0a0a;
}

.dashboard-card-placeholder i {
    font-size: 64px;
    color: #ffde00;
}

.dashboard-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.stage-badge-inline {
    margin-bottom: 12px;
}

.stage-badge-small {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: #ffde00;
    color: #000000;
}

.dashboard-card-meta {
    margin-bottom: 12px;
}

.meta-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.meta-text i {
    color: #ffde00;
    margin-right: 4px;
}

.dashboard-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
}

.custom-problem-details {
    background: rgba(255, 222, 0, 0.1);
    border: 1px solid rgba(255, 222, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.stakeholders-info {
    margin-bottom: 12px;
}

.dashboard-card-location {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-comments {
    margin-top: 12px;
    margin-bottom: 12px;
}

.comments-heading {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.comments-preview {
    max-height: 120px;
    overflow-y: auto;
}

.comment-preview-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 8px;
}

.comment-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 4px 0 0 0;
}

.dashboard-card-actions {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.action-row:last-child {
    margin-bottom: 0;
}

.action-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
}

.btn-view {
    background: transparent;
    border-color: rgba(255, 222, 0, 0.3);
    color: #ffde00;
}

.btn-view:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
    text-decoration: none;
}

.btn-ideate {
    background: #ffde00;
    color: #000000;
    border: none;
}

.btn-ideate:hover {
    background: #ffd700;
    color: #000000;
    text-decoration: none;
}

.btn-brainstorm {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-brainstorm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.btn-solution,
.btn-define {
    background: #ffde00;
    color: #000000;
    border: none;
}

.btn-solution:hover,
.btn-define:hover {
    background: #ffd700;
    color: #000000;
    text-decoration: none;
}

.btn-edit {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-edit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.btn-delete {
    background: transparent;
    border-color: rgba(255, 68, 68, 0.3);
    color: rgba(255, 68, 68, 0.7);
    cursor: pointer;
}

.btn-delete:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.problem-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.problem-card-link:hover .problem-card {
    border-color: rgba(255, 222, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.problem-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-card-placeholder {
    background: #0a0a0a;
}

.problem-card-placeholder i {
    font-size: 48px;
    color: #ffde00;
}

.problem-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

/* Stage Indicator */
.stage-indicator {
    margin-bottom: 16px;
}

.stage-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    color: #000000;
    background: #ffde00;
}

.stage-badge.stage-1 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-2 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-3 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-4 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-5 {
    background: #ffde00;
    color: #000000;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    background: #ffde00;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.problem-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-item i {
    color: #ffde00;
}

.problem-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    flex: 1;
}

.problem-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffde00;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.problem-card-link:hover .view-link {
    gap: 12px;
}

/* No Problems Message */
.no-problems-message {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.no-problems-message i {
    font-size: 64px;
    color: #ffde00;
    margin-bottom: 24px;
}

.no-problems-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.no-problems-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

/* Industry Features Section */
.industry-features-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 100px;
    box-sizing: border-box;
}

.industry-features-heading {
    margin: 0;
    max-width: 900px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    letter-spacing: -0.07em;
    color: #1d1f21;
}

.industry-features-body {
    margin: 20px 0 0 0;
    max-width: 980px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.35;
    color: rgba(29, 31, 33, 0.8);
}

.industry-features-cards {
    margin-top: 60px;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.industry-feature-card {
    display: flex;
    flex-direction: column;
}

.industry-feature-image {
    width: 100%;
    aspect-ratio: 355 / 210;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.industry-feature-title {
    margin: 20px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.07em;
    color: #1d1f21;
}

.industry-feature-text {
    margin: 10px 0 0 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.35;
    color: rgba(29, 31, 33, 0.8);
}

.industry-features-actions {
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.industry-btn-learn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #1d1f21;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
}

.industry-btn-learn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.6) 100%);
    z-index: -1;
}

.industry-btn-learn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.industry-btn-learn:hover::after {
    opacity: 1;
}

.industry-btn-learn:hover {
    color: #1d1f21;
    text-decoration: none;
}

.industry-btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #1d1f21;
    text-decoration: none;
}

.industry-btn-signup:hover {
    color: #1d1f21;
    text-decoration: none;
}

@media (max-width: 980px) {
    .industry-features-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .industry-features-section {
        padding: 0 24px;
    }
    .industry-features-heading {
        font-size: clamp(26px, 6vw, 40px);
    }
    .industry-features-body {
        font-size: 18px;
        margin-top: 16px;
    }
    .industry-features-cards {
        margin-top: 40px;
        gap: 24px;
    }
    .industry-feature-title {
        font-size: 24px;
        margin-top: 16px;
    }
    .industry-feature-text {
        font-size: 16px;
        margin-top: 8px;
    }
    .industry-features-actions {
        margin-top: 28px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .industry-btn-learn,
    .industry-btn-signup {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .industry-features-section {
        padding: 0 16px;
    }
    .industry-features-heading {
        font-size: 22px;
    }
    .industry-features-body {
        font-size: 15px;
        margin-top: 12px;
    }
    .industry-features-cards {
        margin-top: 28px;
        gap: 20px;
    }
    .industry-feature-title {
        font-size: 20px;
        margin-top: 12px;
    }
    .industry-feature-text {
        font-size: 14px;
    }
    .industry-features-actions {
        margin-top: 20px;
        gap: 12px;
    }
    .industry-btn-learn,
    .industry-btn-signup {
        font-size: 14px;
    }
}

/* Metrics Bento Grid */
.metrics-bento-wrap {
    width: 1140px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.metrics-bento-wrap + .about-company-section {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .metrics-bento-wrap + .about-company-section {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .metrics-bento-wrap + .about-company-section {
        margin-top: 50px;
    }
}

.metrics-bento {
    width: 100%;
    max-width: 1140px;
    height: 475px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.bento-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 690px;
}

.bento-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 430px;
}

.bento-box {
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

/* Top left: 690×302px - image centered, text on top of image */
.bento-top-left {
    width: 690px;
    height: 302px;
    padding: 26px 48px;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bento-global-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 96px);
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: -0.03em;
    margin: 0;
    text-align: center;
    z-index: 1;
}

.bento-global-logo {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Bottom left: 690×153px - number and label horizontal */
.bento-bottom-left {
    width: 690px;
    height: 153px;
    padding: 34px 27px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.bento-students-img {
    height: 66px;
    width: auto;
    object-fit: contain;
}

.bento-students-text-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* Top right & middle right: number and label horizontal */
.bento-top-right .bento-label,
.bento-middle-right .bento-label {
    line-height: 120%;
}

/* Top right: 430×125px - horizontal layout */
.bento-top-right {
    width: 430px;
    height: 125px;
    padding: 20px 75px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* Middle right: 430×185px - horizontal layout */
.bento-middle-right {
    width: 430px;
    height: 185px;
    padding: 50px 60px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.bento-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 70px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.bento-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: -0.03em;
    line-height: 120%;
}

/* Bottom right button: 430×125px */
.bento-button-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 430px;
    height: 125px;
    padding: 32px 85px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: -0.03em;
    color: #111;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.bento-button-box::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.6) 100%);
}

.bento-button-box::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.bento-button-box:hover::after {
    opacity: 1;
}

.bento-button-box:hover {
    color: #111;
    text-decoration: none;
}

.bento-button-text {
    position: relative;
    z-index: 1;
    color: #111;
}

.bento-button-box:hover .bento-button-text {
    color: #111;
}

/* About the company / A Global Legacy of Innovation */
.about-company-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: #f7f7f7;
    font-family: 'Satoshi', sans-serif;
    overflow: visible;
}

.about-company-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 50px;
    letter-spacing: -0.07em;
    text-align: center;
    color: #111;
    margin: 0 0 48px 0;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

.about-company-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-company-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 400px;
    overflow: visible;
}

/* Circle behind central image: 80% of 400px = 320px, fill #F8DC00, blur 540px */
.about-company-center::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #F8DC00;
    filter: blur(300px);
    z-index: 0;
}

.about-company-image {
    position: relative;
    z-index: 1;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.about-company-block {
    padding: 24px;
    text-align: center;
}

.about-company-icon {
    height: 45px;
    width: auto;
    display: block;
    margin: 0 auto 12px auto;
}

.about-company-block-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -0.07em;
    color: #111;
    margin: 0 0 8px 0;
    text-align: center;
    white-space: nowrap;
}

.about-company-block-body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #111;
    margin: 0;
    text-align: center;
}

/* Explore button - same radial gradient as Enroll Now, Satoshi Bold 18px, 6px 12px padding, 8px radius */
.about-company-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 6px 12px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.about-company-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.6) 100%);
}

.about-company-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle, #f7f7f7 0%, rgba(248, 220, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-company-btn:hover::after {
    opacity: 1;
}

.about-company-btn:hover {
    color: #111;
    text-decoration: none;
}

.about-company-btn-text {
    position: relative;
    z-index: 1;
    color: #111;
}

.about-company-btn:hover .about-company-btn-text {
    color: #111;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
    .about-company-grid {
        grid-template-columns: 1fr;
    }

    .about-company-center {
        min-width: 0;
    }

    .about-company-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .about-company-heading {
        font-size: clamp(28px, 6vw, 50px);
    }

    .about-company-block-heading {
        font-size: clamp(24px, 4vw, 32px);
    }
}

@media (max-width: 1200px) {
    .about-company-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1160px) {
    .about-company-center {
        min-width: 0;
    }

    .about-company-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding: 0 20px;
    }
    .about-company-heading {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 32px;
        white-space: nowrap;
    }
    /* Mobile order: header (outside grid), then image, then 4 cards, then explore button */
    .about-company-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .about-company-center {
        display: contents;
    }
    .about-company-center::before {
        display: none;
    }
    .about-company-image {
        order: 1;
        max-width: 280px;
        margin: 0 auto;
    }
    .about-company-left {
        order: 2;
    }
    .about-company-right {
        order: 3;
    }
    .about-company-btn {
        order: 4;
        padding: 8px 16px;
        font-size: 16px;
        align-self: center;
    }
    .about-company-column {
        gap: 16px;
    }
    .about-company-block {
        padding: 20px 16px;
    }
    .about-company-block-heading {
        font-size: 24px;
        white-space: normal;
    }
    .about-company-block-body {
        font-size: 16px;
    }
    .about-company-icon {
        height: 40px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-company-section {
        padding: 0 16px;
    }
    .about-company-heading {
        font-size: clamp(18px, 5.5vw, 22px);
        margin-bottom: 24px;
        white-space: nowrap;
    }
    .about-company-grid {
        gap: 20px;
    }
    .about-company-block {
        padding: 16px 12px;
    }
    .about-company-block-heading {
        font-size: 20px;
    }
    .about-company-block-body {
        font-size: 14px;
    }
    .about-company-image {
        max-width: 240px;
    }
}

/* Testimonial Section */
.testimonial-section {
    width: 1140px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding: 0;
    position: relative;
    z-index: 10;
}

.testimonial-viewport {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.testimonial-slide .testimonial-box {
    width: 100%;
}

.testimonial-box {
    width: 1140px;
    max-width: 100%;
    height: 395px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    padding: 45px 60px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 11;
}

.testimonial-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.testimonial-text {
    margin: 20px 0 0 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: #1D1F21;
    text-align: left;
    flex: 1 1 auto;
    min-height: 0;
}

.testimonial-bottom-row {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.testimonial-person {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    flex-shrink: 0;
}

.testimonial-name {
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #1D1F21;
    text-align: left;
    flex-shrink: 0;
}

.testimonial-designation {
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #666666;
    text-align: left;
    flex-shrink: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.testimonial-chevron-btn {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-chevron {
    width: 40px;
    height: 40px;
    display: block;
}

@media (max-width: 1200px) {
    .testimonial-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1160px) {
    .testimonial-box {
        height: auto;
        min-height: 395px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .testimonial-box {
        padding: 28px 24px;
        height: 380px;
        min-height: 380px;
        overflow: hidden;
    }
    .testimonial-text {
        font-size: 15px;
        margin-top: 16px;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
    }
    .testimonial-name,
    .testimonial-designation {
        font-size: 14px;
    }
    .testimonial-chevron {
        width: 32px;
        height: 32px;
    }
    .testimonial-nav {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .testimonial-box {
        padding: 20px 16px;
        height: 380px;
        min-height: 380px;
        overflow: hidden;
    }
    .testimonial-logo {
        height: 40px;
        max-width: 140px;
    }
    .testimonial-text {
        font-size: 13px;
        margin-top: 12px;
    }
    .testimonial-bottom-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .testimonial-person {
        order: 1;
        width: 100%;
    }
    .testimonial-nav {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }
    .testimonial-name,
    .testimonial-designation {
        font-size: 13px;
    }
    .testimonial-chevron {
        width: 28px;
        height: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .landing-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 20px;
    }

    .hero-section {
        text-align: center;
        align-items: center;
    }

    .description-text {
        max-width: 100%;
    }

    .features-grid {
        max-width: 600px;
        margin: 0 auto;
    }

    .problems-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-right-links {
        top: 10px;
        right: 16px;
        gap: 16px;
    }

    .nav-link-text {
        font-size: 12px;
    }

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

    .description-text {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .problems-heading {
        font-size: 28px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    /* Bento: stack and scale on small screens */
    .metrics-bento-wrap {
        padding: 0 16px;
    }
    .metrics-bento {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .bento-left,
    .bento-right {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .bento-box {
        max-width: 100%;
    }

    .bento-top-left {
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 20px 24px;
    }
    .bento-bottom-left {
        width: 100%;
        height: auto;
        min-height: 100px;
        padding: 20px 24px;
        gap: 24px;
    }

    .bento-global-text {
        font-size: clamp(24px, 6vw, 60px);
    }

    .bento-top-right,
    .bento-middle-right {
        width: 100%;
        height: auto;
        min-height: 80px;
        padding: 20px 24px;
    }

    .bento-button-box {
        width: 100%;
        height: auto;
        min-height: 72px;
        padding: 20px 24px;
        font-size: clamp(24px, 6vw, 50px);
    }

    .bento-number {
        font-size: clamp(32px, 8vw, 70px);
    }

    .bento-label {
        font-size: clamp(16px, 4vw, 26px);
    }
}

@media (max-width: 1200px) {
    .metrics-bento {
        width: 100%;
        max-width: 1140px;
        flex-wrap: wrap;
        height: auto;
    }

    .bento-left {
        width: 100%;
        max-width: 690px;
    }

    .bento-right {
        width: 100%;
        max-width: 430px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .logo-text {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .problems-heading {
        font-size: 24px;
    }

    /* Spline hero – smallest screens, left-aligned */
    .spline-temp-content {
        left: 16px;
        right: 16px;
        align-items: flex-start;
        text-align: left;
    }
    .spline-temp-heading {
        font-size: 24px;
        text-align: left;
    }
    .spline-temp-content .hero-minimal-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
    .spline-temp-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Bento – tighter on small phones */
    .metrics-bento-wrap {
        padding: 0 12px;
    }
    .metrics-bento {
        gap: 12px;
    }
    .bento-left,
    .bento-right {
        gap: 12px;
    }
    .bento-top-left {
        padding: 16px 20px;
        min-height: 100px;
    }
    .bento-bottom-left {
        padding: 16px 20px;
        gap: 16px;
        min-height: 80px;
    }
    .bento-students-img {
        height: 48px;
    }
    .bento-number {
        font-size: clamp(28px, 7vw, 50px);
    }
    .bento-label {
        font-size: 14px;
    }
    .bento-button-box {
        min-height: 60px;
        padding: 16px 20px;
        font-size: 22px;
    }
}
