.cft-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cft-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cft-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 50, 0.45) 0%, rgba(10, 15, 50, 0.75) 50%, #0a0f28 100%);
    z-index: 2;
}

.cft-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 1.5rem;
}

.cft-hero h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cft-hero p {
    font-size: 30px !important;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

/* General Section Styling */
.cft-section {
    padding: 0px 0;
}
.mt-60{
    margin-top: 60px;
}

.cft-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cft-title {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #93c5fd, #c4b5fd, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cft-subtitle {

    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Intro Section */
.cft-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cft-intro img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.25);
}

@media (max-width: 1024px) {
    .cft-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Core Functions Grid */
.cft-core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cft-core-card {
    background: rgba(20, 30, 80, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 150, 255, 0.25);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.cft-core-card:hover {
    transform: translateY(-12px);
    border-color: #60a5fa;
    box-shadow: 0 30px 60px rgba(0, 100, 255, 0.18);
}

.cft-icon svg {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
}

.cft-core-card h4 {
    font-size: 28px;
    margin-bottom: 1rem;
    color: #e0f2ff;
}

.cft-core-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

/* What it Enables */
.cft-enables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cft-enables-card {
    background: rgba(30, 40, 90, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.2);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;

    line-height: 1.5;
    transition: all 0.3s ease;
}

.cft-enables-card:hover {
    background: rgba(40, 60, 120, 0.75);
    border-color: #93c5fd;
}

/* Verticals Grid */
.cft-verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cft-vertical-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(100, 150, 255, 0.2);
    background: rgba(15, 25, 70, 0.7);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    text-decoration: none;
    color: white;
}

.cft-vertical-card:hover {
    transform: translateY(-12px);
    border-color: #60a5fa;
    box-shadow: 0 30px 60px rgba(0, 120, 255, 0.22);
}

.cft-vertical-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af, #312e81);
}

.cft-vertical-card h4 {
    font-size: 20px;
    padding: 1.5rem;
    margin: 0;
    text-align: center;

    background: rgba(0, 0, 0, 0.35);
}

/* Impact List */
.cft-impact ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.cft-impact li {

    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.cft-impact li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #93c5fd;

}

.mt-24 {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .cft-hero {
        height: 70vh;
        min-height: 500px;
    }

}


    .cft-core-horizontal {
            margin-top: 45px;
    display: flex;
    align-items: stretch;
    gap: 4rem;
    position: relative;
}

/* vertical divider line */
.cft-core-item {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    position: relative;
    padding-left: 1.5rem;
}

.cft-core-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
}

/* index style */
.cft-core-index {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.35;
    line-height: 1;
}

/* text */
.cft-core-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cft-core-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* responsive */
@media (max-width: 1024px) {
    .cft-core-horizontal {
        flex-direction: column;
        gap: 2.5rem;
    }

    .cft-core-item:not(:last-child)::after {
        display: none;
    }
}

.cft-enables-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ITEM */
.cft-enable-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.2rem;
    transition: transform .35s ease;
}

/* BIG CREATIVE INDEX */
.enable-index {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .95;
}

/* Subtle accent line under index */
.enable-index::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin-top: .6rem;
    background: linear-gradient(90deg, #60a5fa, transparent);
}

/* TEXT */
.cft-enable-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    transition: color .35s ease;
}

/* HOVER – refined, not loud */
.cft-enable-item:hover {
    transform: translateY(-6px);
}

.cft-enable-item:hover p {
    color: #ffffff;
}

/* Optional glow polish */
.cft-enable-item:hover .enable-index {
    text-shadow: 0 0 22px rgba(147, 197, 253, 0.35);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cft-enables-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cft-enables-strip {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .enable-index {
        font-size: 2rem;
    }
}
.header-v2 {
    .ll{

    }
    .header-wrapper {
        background: transparent;
                border: none;
    }
    
}

.button-primary,
.button-secondary{
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    padding-bottom: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* underline */
.button-primary::after,
.button-secondary::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* hover effect */
.button-primary:hover,
.button-secondary:hover{
    transform: translateY(-2px);
    color: #8ab4ff; /* subtle highlight */
}

.button-primary:hover::after,
.button-secondary:hover::after{
    transform: scaleX(1);
}

/* optional: smoother focus */
.button-primary:focus-visible,
.button-secondary:focus-visible{
    outline: none;
    transform: translateY(-2px);
}

/* badge */
.badge-button,
.text-tertiary{
    border-color: #0b1732;
    color: #ffffff;
}

.responsive-heading {
  font-size: clamp(26px, 4vw, 40px);
}