.spanArrow {
    position: relative;
    top: -2px;
}

.group-01-color {
    color: #7F9CF5;
}

.group-01-bg {
    background-color: #7F9CF5;
}

.group-02-color {
    color: #FF6B6B;
}

.group-02-bg {
    background-color: #FF6B6B;
}

.table-transparent {
    background-color: transparent;
    --bs-table-bg: transparent;
}

.btn-xs {
    padding: 0.14rem 0.4rem;
    font-size: 80%;
    line-height: 1.5;
}

:root {
    --quint-purple: #771AAF;
    --quint-orange: #E45526;
    --quint-dark: #303133;
}

body {
    background-color: white;
    font-family: 'Open Sans', sans-serif;
    color: var(--quint-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
}

.quint-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}

/* HEADER */
.landing-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    z-index: 100;
}

.brand-logo-text {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--quint-purple);
    letter-spacing: -0.5px;
}

.btn-quint-nav {
    background-color: white;
    color: var(--quint-orange);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-quint-nav:hover {
    background-color: var(--quint-orange);
    color: white;
    transform: translateY(-2px);
}

/* HERO */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: white;
}

/* Dynamic Background Curves */
.bg-curve-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 60vw;
    height: 100vh;
    background: #fdf5f3;
    border-bottom-left-radius: 50%;
    z-index: 1;
}

.bg-curve-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(119, 26, 175, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.bg-line {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    border: 2px solid var(--quint-orange);
    border-radius: 43% 57% 70% 30% / 30% 62% 38% 70%;
    opacity: 0.1;
    z-index: 2;
    animation: morse 10s linear infinite;
}

@keyframes morse {
    0% {
        border-radius: 43% 57% 70% 30% / 30% 62% 38% 70%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        transform: rotate(180deg);
    }

    100% {
        border-radius: 43% 57% 70% 30% / 30% 62% 38% 70%;
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {

    .hero-img{
        display: none;
    }
}

@media (max-width: 500px) {

    .hero-title{
        font-size: 3rem !important;
    }

    .hero-desc{
        font-size: 1rem !important;
    }
}

.context-label {
    font-family: 'Jost', sans-serif;
    color: var(--quint-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 0.9rem;
    position: relative;
    padding-left: 50px;
}

.context-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--quint-orange);
}

.hero-title {
    color: var(--quint-dark);
    font-weight: 800;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.text-purple {
    color: var(--quint-purple);
}

.hero-desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
    border-left: 3px solid var(--quint-purple);
    padding-left: 1.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.btn-quint-primary {
    background-color: var(--quint-purple);
    color: white;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    padding: 1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(119, 26, 175, 0.3);
}

.btn-quint-primary:hover {
    transform: translateY(-3px);
    background-color: #61158e;
    color: white;
}

.btn-quint-secondary {
    background-color: white;
    color: var(--quint-orange);
    border: none;
    border-radius: 50px;
    /* Pill shape */
    padding: 1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn-quint-secondary_ {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 60px; */
    /* height: 60px; */
    border-radius: 50px;
    background: white;
    color: var(--quint-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
}

.btn-quint-secondary:hover {
    background: var(--quint-orange);
    color: white;
    transform: translateY(-3px);
}

/* RIGHT SIDE GRAPHIC/CARDS */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.info-card:nth-child(2) {
    transform: translateY(3rem);
}

.info-card:nth-child(3) {
    margin-top: -3rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--quint-orange);
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--quint-dark);
}

.card-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* FOOTER */
.landing-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    z-index: 100;
}

.hero-img img{
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.border-light-02 { border-color: #e9ecef !important; }
