* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.startup-hero {
    background: var(--bg-light);
    height: calc(100vh - 79px);
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.startup-hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}



.startup-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #b9d0ff;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: .3px;
}

.startup-top-badge a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: var(--primary-color) !important;
}

.startup-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto 0;
}

.startup-content h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 600px;
}

.startup-content h1 span {
    color: var(--primary-color);
}

.startup-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 700px;
}

.startup-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.startup-primary-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 5%;
    font-weight: 600;
    transition: .3s;
}

.startup-primary-btn:hover {
    transform: translateY(-2px);
}

.startup-secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5%;
    transition: .3s;
}

.startup-secondary-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.startup-dashboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
    /* border: 2px solid white;
    background: rgba(255, 255, 255, 0.801);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 24px; */
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, .08); */
}

.startup-dashboard img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    scale: 1.6;
    margin-top: 66px;
}

/* =========================
   Tablet
========================= */

@media (max-width: 1300px) {
    .startup-content h1 {
        max-width: 550px;
        font-size: clamp(2rem, 4.5vw, 2.6rem);
    }

    .startup-dashboard-card:last-child {
        display: none;
    }

    .startup-top-badge {
        margin-bottom: 12px;
    }
}

@media (max-width: 1100px) {


    .startup-dashboard-card:last-child {
        display: flex;
    }

    .startup-hero {
        height: auto;
        padding: 40px 0;
    }

    .startup-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .startup-content {
        text-align: center;
        align-items: center;
    }

    .startup-hero-buttons {
        justify-content: center;
    }

    .startup-dashboard {
        margin-top: 20px;
        max-width: 560px;
    }

    .startup-dashboard img {
        scale: 1.2;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .startup-content h1 {
        font-size: clamp(34px, 8vw, 46px);
    }

    .startup-top-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
    }

    .startup-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .startup-primary-btn,
    .startup-secondary-btn {
        width: 100%;
        text-align: center;
    }



    .startup-dashboard-card strong {
        margin-top: 5px;
    }

    .startup-dashboard img {
        scale: 1.35;
    }
}






















.businessbook-section {
    width: 100%;
    padding-top: 85px;
    display: flex;
    padding-bottom: 85px;
    align-items: center;
    background-color: white;
}

.container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}



.content h2 {
    font-family: var(--heading-bold-font-family);
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 2%;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 600;
}

.content h2 span {
    color: var(--primary-color);
}

.content p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.75;
    margin-bottom: 32px;
    letter-spacing: 5%;
    max-width: 550px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    letter-spacing: 5%;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 101, 242, 0.25);
}



.dashboard-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.top-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.top-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: #fcfdff;
    border: 1px solid #e4eeff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0px 5px 14px 0px #080F340A;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 101, 242, 0.12);
}

.card h3 {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
}

.card h2 {
    font-family: var(--heading-font-family);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.card p {
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media(max-width:991px) {

    .container {
        grid-template-columns: 1fr;
    }

    .content {
        text-align: center;
    }

    .content p {
        margin: auto;
        margin-bottom: 30px;
    }

    .content h2 {
        font-size: 40px;
    }
}

@media(max-width:600px) {

    .businessbook-section {
        padding: 60px 5%;
    }

    .content h2 {
        font-size: 32px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}




























.startup-pain-section {
    background-color: var(--bg-light);
    padding-top: 85px;
    padding-bottom: 85px;
    position: relative;
    overflow: hidden;
}

.pain-heading {
    text-align: left;
    margin-bottom: 65px;
}

.tag {
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 16px;
    color: var(--primary-color);
    letter-spacing: 5%;
    font-size: 12px;
    font-weight: 600;
    /* margin-bottom: 8px; */
    padding-left: 30px;
}

.tag::before {
    position: absolute;
    content: '';
    height: 1.5px;
    width: 20px;
    top: 16px;
    left: 0px;
    background-color: var(--primary-color);
}

.pain-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 2%;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--heading-bold-font-family);
}

.pain-heading p {
    /* max-width: 600px; */
    /* margin: auto; */
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-primary);
}

/* MAIN LAYOUT */
.pain-layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT RIGHT */
.pain-left,
.pain-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* LINE */
.pain-line {
    position: absolute;
    left: 16px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 101, 242, 0.3),
            transparent);
}

/* ITEM */
.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.pain-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 6px solid var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
    position: relative;
    z-index: 5;
}

.pain-content span {
    font-family: var(--heading-font-family);
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.pain-content h3 {
    font-family: var(--heading-font-family);
    font-size: 20px;
    line-height: 1.2;
    margin: 8px 0 12px;
    color: var(--text-pri);
}

.pain-content p {
    color: var(--text-primary);
    line-height: 1.75;
    letter-spacing: 5%;
    font-size: 16px;
    max-width: 360px;
}

/* CENTER */
.pain-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(0, 101, 242, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 101, 242, 0.12);
    animation: pulseGlow 4s infinite ease-in-out;
}

.dashboard-box {
    width: 260px;
    background: white;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.dashboard-box h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.mini-bars {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.mini-bars span {
    height: 12px;
    border-radius: 30px;
    background: var(--primary-color);
}

.mini-bars span:nth-child(1) {
    width: 70px;
}

.mini-bars span:nth-child(2) {
    width: 40px;
    opacity: .6;
}

.mini-bars span:nth-child(3) {
    width: 90px;
    opacity: .3;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-bottom: 20px;
}

.mini-chart div {
    flex: 1;
    border-radius: 12px 12px 0 0;
    background: var(--primary-color);
}

.mini-chart div:nth-child(1) {
    height: 40%;
}

.mini-chart div:nth-child(2) {
    height: 70%;
}

.mini-chart div:nth-child(3) {
    height: 55%;
}

.mini-chart div:nth-child(4) {
    height: 90%;
}

.dashboard-box p {
    color: var(--text-grey);
    line-height: 1.7;
}

/* ANIMATION */
@keyframes pulseGlow {

    0% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .5;
    }
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .pain-layout {
        grid-template-columns: 1fr;
    }

    .pain-center {
        order: -1;
        margin-bottom: 30px;
    }

    .pain-line {
        display: none;
    }
}

@media(max-width:768px) {

    .pain-heading h2 {
        font-size: 38px;
    }

    .dashboard-circle {
        width: 300px;
        height: 300px;
    }

    .dashboard-box {
        width: 220px;
        padding: 24px;
    }

    .pain-content h3 {
        font-size: 22px;
    }
}

@media(max-width:480px) {

    .startup-pain-section {
        padding: 80px 0;
    }

    .pain-heading h2 {
        font-size: 32px;
    }

    .dashboard-circle {
        width: 260px;
        height: 260px;
    }

    .dashboard-box {
        width: 200px;
    }
}


































.financial-core-section {
    padding-top: 85px;
    padding-bottom: 85px;
    position: relative;
    background-color: var(--bg-main);
}

/* HEADER */
.financial-core-header {
    text-align: left;
    margin-bottom: 65px;
}


.financial-core-header h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 2%;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: var(--heading-bold-font-family);
}

.financial-core-header p {
    /* max-width: 760px; */
    /* margin: auto; */
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-primary);
    letter-spacing: 5%;
}

/* WRAPPER */
.core-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}
.explore-btn{margin-top: 65px;}

/* CENTER LINE */
.core-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 101, 242, 0.5),
            transparent);
}

/* ITEM */
.core-item {
    display: grid;
    grid-template-columns: 1fr 94px 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* REVERSE */
.core-item.reverse .core-left {
    order: 3;
    text-align: left;
}

.core-item.reverse .core-right {
    order: 1;
}

.core-item.reverse .core-center-icon {
    order: 2;
}

/* LEFT */
.core-left {
    text-align: right;
}

.core-number {
    font-family: var(--heading-font-family);
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.core-left h3 {
    font-family: var(--heading-font-family);
    font-size: 28px;
    line-height: 1.2;
    color: var(--text-dark);
}

/* CENTER ICON */
.core-center-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(0, 101, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.core-center-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: white;
    border: 2px dashed rgba(0, 101, 242, 0.3);
}

/* RIGHT */
.core-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg,
            #0065f2,
            #ffffff,
            #ffffff) border-box;
    backdrop-filter: blur(10px);
}

.core-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.core-right ul li {
    position: relative;
    padding-left: 28px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 5%;
}

/* .core-right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
} */

/* RESPONSIVE */
@media(max-width:1100px) {

    .core-item {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 48px;
    }

    .core-center-icon::before,
    .core-center-icon {
        display: none;
    }


    .core-line {
        display: none;
    }

    .core-left,
    .core-item.reverse .core-left {
        text-align: left;
        order: 1;
    }

    .core-center-icon {
        order: 2 !important;
    }

    .core-right,
    .core-item.reverse .core-right {
        order: 3;
    }
}

@media(max-width:768px) {

    .financial-core-header h2 {
        font-size: 40px;
    }

    .core-left h3 {
        font-size: 28px;
    }

    .core-right {
        padding: 28px;
    }
}

@media(max-width:480px) {



    .financial-core-header h2 {
        font-size: 32px;
    }

    .core-left h3 {
        font-size: 24px;
    }

    .core-right ul li {
        font-size: 15px;
    }

    .core-center-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}
















.startup-steps-section {
    padding: 85px 0;
    position: relative;
    background-color: var(--bg-light);
}

/* HEADER */
.steps-header {
    text-align: left;
    margin-bottom: 65px;
}

.steps-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(0, 101, 242, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 22px;
}

.steps-header h2 {

font-size: 40px;

line-height: 1.2;

letter-spacing: 2%;

margin-bottom: 8px;

color: var(--text-dark);

font-family: var(--heading-bold-font-family);
}

.steps-header p {
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 5%;
    line-height: 1.4;
}

/* WRAPPER */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* STEP BOX */
.step-box {
    position: relative;
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    overflow: hidden;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 5px 14px 0px #080F340A;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* ACTIVE */
.active-step {
    background: linear-gradient(135deg,
            rgba(0, 101, 242, 0.08),
            rgba(255, 255, 255, 0.9));
    border: 1px solid #EFF0F6
}

/* TOP */
.step-top {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

/* NUMBER */
.step-number {
    font-family: var(--heading-font-family);
    width: 56px;
    height: 56px;
    background: var(--text-primary);
    color: var(--bg-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

/* LINE */
.step-line {
    flex: 1;
    height: 2px;
    margin-left: 20px;
    background: linear-gradient(to right,
            rgba(0, 101, 242, 0.4),
            transparent);
}

/* CONTENT */
.step-content h3 {
    font-family: var(--heading-font-family);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 16px;
    /* letter-spacing: 5%; */
    line-height: 1.75;
    color: var(--text-primary);
}

/* RESPONSIVE */
@media(max-width:992px) {

    .steps-wrapper {
        grid-template-columns: 1fr;
    }

    .step-line {
        display: none;
    }
}

@media(max-width:768px) {

    .steps-header h2 {
        font-size: 40px;
    }

    .step-content h3 {
        font-size: 26px;
    }

    .step-number {
        width: 68px;
        height: 68px;
        font-size: 22px;
    }
}

@media(max-width:480px) {

    .startup-steps-section {
        padding: 85px 0;
    }

    .steps-header h2 {
        font-size: 32px;
    }

    .step-box {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 15px;
    }
}























.startup-showcase-section {
    padding: 85px 0;
    position: relative;
}

/* HEADER */
.showcase-header {
    text-align: left;
    margin-bottom: 65px;
}



.showcase-header h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 2%;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--heading-bold-font-family);
}

.showcase-header p {
    /* max-width: 720px; */
    /* margin: auto; */
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-primary);
}

/* MAIN */
.showcase-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
}

/* LEFT */
.showcase-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CARD */
.showcase-card {
    padding: 50px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0, 101, 242, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.large-card::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background: var(--primary-color);
    border-radius: 5%;
    transform: rotate(45deg);
}

/* LABEL */
.showcase-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 101, 242, 0.08);
    color: var(--primary-color);
    letter-spacing: 5%;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TITLE */
.showcase-card h3 {
    font-family: var(--heading-font-family);
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.showcase-card p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-primary);
}

/* POINTS */
.showcase-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}


/* BOTTOM */
.showcase-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* MINI CARD */
.mini-card {
    padding: 30px;
    border-radius: 16px;
    background: var(--bg-main);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 101, 242, 0.08);
    transition: 0.4s ease;
}

.mini-card:hover {
    transform: translateY(-8px);
}

.mini-card h4 {
    font-family: var(--heading-font-family);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.mini-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
}

/* BLUE */
.blue-mini {
    background: var(--primary-color);
}

.blue-mini h4,
.blue-mini p {
    color: white;
}

/* RIGHT */
.showcase-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* STRIP */
.feature-strip {
    display: flex;
    gap: 24px;
    padding: 32px;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(0, 101, 242, 0.08);
    box-shadow: 0px 5px 14px 0px #080F340A;
    transition: 0.4s ease;
}

.feature-strip:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* NUMBER */
.strip-number {
    font-family: var(--heading-font-family);
    width: 56px;
    height: 56px;
    background: #121224;
    color: var(--bg-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

/* CONTENT */
.strip-content h4 {
    font-family: var(--heading-font-family);
    font-size: 20px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(
    --text-primary);
}

.strip-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    letter-spacing: 5%;
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .showcase-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .showcase-header h2 {
        font-size: 40px;
    }

    .showcase-card h3 {
        font-size: 36px;
    }

    .showcase-bottom {
        grid-template-columns: 1fr;
    }

    .mini-card h4,
    .strip-content h4 {
        font-size: 24px;
    }
}

@media(max-width:480px) {

    .startup-showcase-section {
        padding: 80px 0;
    }

    .showcase-header h2 {
        font-size: 32px;
    }

    .showcase-card {
        padding: 30px 24px;
    }

    .showcase-card h3 {
        font-size: 28px;
    }

    .feature-strip {
        flex-direction: column;
    }
}