body {
    background: black;
}

:root {
    --brandGrad: linear-gradient(135deg, #18CAD2 0%, #AA54FF 85%);
}

/* HERO BG */
.heroAd {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #fff;

    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%), linear-gradient(135deg, #0c0c0c, #0c0c0c);


    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* GLASS CARD */
.heroContent {
    max-width: 900px;
    padding: 60px 50px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;

}

/* TAG */
.heroTag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    color: #000;
    margin-bottom: 24px;
    border: 1px solid blueviolet;
    border-radius: 50px 0 0 50px;
}

/* From Uiverse.io by SelfMadeSystem */
.absolute {
    position: absolute;
}

.inline-block {
    display: inline-block;
}

.loader {
    display: flex;
    margin: 0.25em 0;
}

.w-2 {
    width: 0.5em;
}

.dash {
    animation: dashArray 4s ease-in-out infinite,
               dashOffset 4s linear infinite;
}

.spin {
    animation: spinDashArray 4s ease-in-out infinite,
               spin 16s ease-in-out infinite,
               dashOffset 4s linear infinite;
    transform-origin: center;
}


@keyframes dashArray {
    0% {
        stroke-dasharray: 0 1 359 0;
    }

    50% {
        stroke-dasharray: 0 359 1 0;
    }

    100% {
        stroke-dasharray: 359 1 0 0;
    }
}

@keyframes spinDashArray {
    0% {
        stroke-dasharray: 270 90;
    }

    50% {
        stroke-dasharray: 0 360;
    }

    100% {
        stroke-dasharray: 270 90;
    }
}

@keyframes dashOffset {
    0% {
        stroke-dashoffset: 365;
    }

    100% {
        stroke-dashoffset: 5;
    }
}

@keyframes spin {
    0% {
        rotate: 0deg;
    }

    12.5%,
    25% {
        rotate: 270deg;
    }

    37.5%,
    50% {
        rotate: 540deg;
    }

    62.5%,
    75% {
        rotate: 810deg;
    }

    87.5%,
    100% {
        rotate: 1080deg;
    }
}

/* From Uiverse.io by mrtqzbek11 */
.uiVerseBtn1 {
    width: 100%;
    height: 102px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    border-radius: 1rem;
    border: none;
    position: relative;
    background: #100720;
    transition: 0.1s;
    margin-bottom: 2rem;
}

.uiVerseBtn1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}



#rotatingText {
    display: inline-block;
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform, filter;
}

/* Enter */
.textFadeIn {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Exit */
.textFadeOut {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    filter: blur(4px);
}

/* From Uiverse.io by gharsh11032000 */

@media(max-width:768px) {
    .cardFlex {
        justify-content: center !important;
        gap: 2rem !important;
    }
}

.card {
    position: relative;
    width: 190px;
    height: 254px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
}


.card::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -5px;
    margin: auto;
    width: 200px;
    height: 264px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
}

.heading {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
}

.card p:not(.heading) {
    font-size: 14px;
}

.card p:last-child {
    color: #e81cff;
    font-weight: 600;
}

.card:hover::after {
    filter: blur(30px);
}

.card:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}




/* HEADLINE */
.heroContent h1 {
    line-height: 1.05;
    margin-bottom: 22px;
    font-family: "CalSans", sans-serif;
}

.heroContent h1 span {
    background: var(--brandGrad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUB TEXT */
.heroContent p {
    opacity: 0.9;
    margin-bottom: 36px;
}

/* ACTIONS */
.heroActions {
    display: flex;
    gap: 18px;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.heroPrimary {
    padding: 16px 38px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: var(--brandGrad);
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heroPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(170, 84, 255, 0.45);
}

.heroSecondary {
    padding: 16px 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.heroSecondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* TRUST STRIP */
.heroTrust {
    display: flex;
    /* justify-content: center; */
    gap: 26px;
    flex-wrap: wrap;

    opacity: 0.85;
}

.heroTrust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.heroTrust i {
    color: #18CAD2;
}

.heroWrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}


.heroLeft h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
}

.heroLeft p {
    font-size: 18px;
    max-width: 520px;
    opacity: 0.85;
}


.heroRight {
    position: relative;
    display: grid;
    gap: 22px;
    isolation: isolate;
}

.heroRight::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: url("/static/img/aboutUsPage/Film\ Tuning\ GIF\ by\ Club\ do\ Auto.gif");
    opacity: 0.72;
    filter: blur(0px);
    z-index: -1;
    border-radius: 50px 0 50px 0;

}

.statCard {
    padding: 32px 34px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(0px);
    border: 2px solid transparent;
}

.statCard small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.65;
}

.statCard.blue {
    border-color: #18cad299;
}

.statCard.purple {
    border-color: #aa54ff99;
}

.statCard.green {
    border-color: #e713cb99;
}



.heroTrust {
    margin-top: 24px;
    gap: 20px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .heroWrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heroRight {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (min-width: 1440px) {
    .heroWrap {
        max-width: 1300px;
    }

    .heroLeft h1 {
        font-size: 64px;
    }
}

@media (max-width: 1200px) {
    .heroWrap {
        gap: 40px;
    }

    .heroLeft h1 {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .heroWrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heroLeft p {
        margin: auto;
    }

    .heroRight {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .heroLeft h1 {
        font-size: 44px;
    }

    .heroRight {
        grid-template-columns: repeat(2, 1fr);
    }

    .statCard {
        padding: 22px;
    }
}

@media (max-width: 600px) {
    .heroAd {
        padding: 60px 16px;
    }

    .heroLeft h1 {
        font-size: 38px;
    }

    .heroActions {
        flex-direction: column;
    }

    .heroPrimary,
    .heroSecondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .heroLeft h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .heroLeft p {
        font-size: 15px;
    }

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

    .statCard h3 {
        font-size: 28px;
    }
}


.scrollForOurBestOfGrowthForYourSolution {
    height: 150px;
    overflow: hidden;
    background: #0c0c0c;
    display: flex;
    align-items: center;
}

.autoScrollTrack {
    display: flex;
    gap: 22px;
    padding-left: 40px;
}

/* CARD */
.growthCard {
    min-width: 260px;
    height: 100px;
    padding: 16px 22px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 18px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;

    /* GLASS look */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);

    /* GRADIENT BORDER (transparent center) */
    border: 1.5px solid transparent;

}

/* ICON */
.growthCard i {
    font-size: 22px;
    background: linear-gradient(135deg, #18cad2, #aa54ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ANIMATED GRADIENT BORDER */
.growthCard::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;

    background-size: 300% 300%;
    animation: borderFlow 4s linear infinite;
    z-index: -1;
}

/* SOFT GLOW */
.growthCard::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            #aa54ff,
            #18cad2);
    opacity: 0.25;
    filter: blur(18px);
    z-index: -2;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* MOBILE ONLY */
@media (max-width: 480px) {

    .autoScrollTrack {
        gap: 14px;
        padding-left: 20px;
    }

    .growthCard {
        min-width: 180px;
        height: 78px;
        padding: 10px 14px;
        border-radius: 14px;

        font-size: 14px;
        gap: 10px;
    }

    .growthCard i {
        font-size: 16px;
    }
}


/* SECTION */
.startGrowingFormSection {
    padding: 80px 20px;
    background: #0c0c0c;
}

/* FORM WRAPPER */
.formWrapper.wide {
    max-width: 1200px;
    margin: auto;
    padding: clamp(24px, 5vw, 50px);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);

    border: 1.5px solid transparent;
    background-image:
        linear-gradient(#0c0c0c, #0c0c0c),
        linear-gradient(135deg, #000, #aa54ff, #18cad2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.formWrapper h2 {
    color: #fff;
    font-size: 32px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 36px;
}

/* GRID */
.growthForm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* full width rows */
.formGroup.full {
    grid-column: 1 / -1;
}


.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 15px;
}

.formGroup select option{
    background: black !important;
}

.sectionLabel {
    display: block;
    color: #ccc;
    font-weight: 600;
    margin-bottom: 16px;
}

/* NEED CARDS */
.needGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.needCard {
    padding: 26px 18px;
    border-radius: 20px;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.14);

    transition: all 0.3s ease;
}

.needCard:hover {
    transform: translateY(-4px);
    border-color: rgba(170, 84, 255, 0.6);
}


.needCard i {
    font-size: 28px;
    background: linear-gradient(135deg, #18cad2, #aa54ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.needCard span {
    color: #fff;
    font-weight: 600;
}

.needCard input {
    display: none;
}

/* CHECKED STATE */
.needCard:has(input:checked) {
    transform: translateY(-6px);
    border-color: transparent;
    background-image:
        linear-gradient(#0c0c0c, #0c0c0c),
        linear-gradient(135deg, #aa54ff, #18cad2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.tickIcon {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 26px;
    height: 26px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff00;
    font-size: 14px;

    opacity: 0;
    transform: scale(0.6);
    transition: all 0.25s ease;
}

.needCard:has(input:checked) .tickIcon {
    opacity: 1;
    transform: scale(1);
}


/* SUBMIT */
.submitBtn {
    padding: 16px;
    border-radius: 20px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #aa54ff, #18cad2);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

/* HOVER */
.submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(170, 84, 255, 0.35),
        0 4px 12px rgba(24, 202, 210, 0.35);
    filter: brightness(1.08);
}

/* ACTIVE (click feel) */
.submitBtn:active {
    transform: translateY(0);
    box-shadow: 
        0 6px 14px rgba(170, 84, 255, 0.25);
}

/* MOBILE */
@media (max-width: 900px) {
    .growthForm {
        grid-template-columns: 1fr;
    }

    .needGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .submitBtn {
        grid-column: span 1;
    }
}

.growthEndSection {
    padding: 80px 20px;
    background: radial-gradient(
        circle at top,
        rgba(170, 84, 255, 0.08),
        #0c0c0c 60%
    );
    color: #eaeaea;
}

.growthEndSection .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Privacy note */
.privacyNote {
    font-size: 15px;
    line-height: 1.6;
    color: #bfbfbf;
    margin-bottom: 50px;
}

.privacyNote i {
    color: #18cad2;
    margin-right: 8px;
}

/* Next steps */
.nextSteps h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.nextSteps ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    max-width: 520px;
}

.nextSteps li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 15px;
    color: #d9d9d9;
    transition: all 0.3s ease;
}

.nextSteps li i {
    color: #aa54ff;
    font-size: 18px;
}

.nextSteps li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Brand note */
.brandNote {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.brandNote p {
    font-size: 15px;
    line-height: 1.7;
    color: #cfcfcf;
}

.brandNote i {
    color: #18cad2;
    margin-right: 8px;
}

.brandNote strong {
    color: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .nextSteps h3 {
        font-size: 22px;
    }

    .nextSteps li {
        font-size: 14px;
    }

    .privacyNote,
    .brandNote p {
        font-size: 14px;
    }
}
