/* ==========================
CORPORATE HERO
========================== */

.cgt-hero-shell {

    padding: 50px 6%;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #0f766e
    );

    overflow: hidden;
}

.cgt-hero-wrapper {

    width: min(1400px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: center;
}

/* LEFT */

.cgt-copy-area h1 {

    font-size:
    clamp(1.8rem, 2.5vw, 2rem);

    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.cgt-copy-area p {

    color: #dbeafe;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cgt-mini-badge {

    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background:
    rgba(255,255,255,.08);

    color: #ffffff;

    margin-bottom: 20px;

    backdrop-filter: blur(20px);
}

/* STATS */

.cgt-statistics-row {

    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-bottom: 35px;
}

.cgt-stat-box {

    background:
    rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    padding: 20px;

    border-radius: 22px;

    min-width: 160px;
}

.cgt-stat-box h3 {

    color: #10b981;
    margin-bottom: 8px;
}

.cgt-stat-box span {

    color: #dbeafe;
    font-size: .95rem;
}

/* BUTTONS */

.cgt-button-group {

    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cgt-primary-btn {

    text-decoration: none;

    padding: 16px 30px;

    background: #fbbf24;

    color: #021526;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;
}

.cgt-primary-btn:hover {

    transform: translateY(-5px);
}

.cgt-secondary-btn {

    text-decoration: none;

    padding: 16px 30px;

    border-radius: 50px;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.2);

    background:
    rgba(255,255,255,.08);

    transition: .3s;
}

.cgt-secondary-btn:hover {

    background: #ffffff;
    color: #021526;
}

/* RIGHT */

.cgt-visual-zone {

    position: relative;

    display: flex;
    justify-content: center;
}

.cgt-image-panel {

    width: 100%;
    max-width: 430px;

    border-radius: 35px;
    overflow: hidden;

    box-shadow:
    0 30px 60px rgba(0,0,0,.25);
}

.cgt-image-panel img {

    width: 100%;
    height: 500px;

    object-fit: cover;

    display: block;
}

/* FLOATING TAGS */

.cgt-floating-tag {

    position: absolute;

    padding: 15px 22px;

    background:
    rgba(255,255,255,.12);

    color: #ffffff;

    border-radius: 20px;

    backdrop-filter: blur(20px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.2);

    animation:
    cgtFloating 6s ease-in-out infinite;
}

.cgt-tag-one {

    top: 35px;
    left: -15px;
}

.cgt-tag-two {

    top: 220px;
    right: -15px;
}

.cgt-tag-three {

    bottom: 40px;
    left: 20px;
}

@keyframes cgtFloating {

    0%,
    100% {

        transform:
        translateY(0);
    }

    50% {

        transform:
        translateY(-15px);
    }
}

/* TABLET */

@media (max-width:992px) {

    .cgt-hero-wrapper {

        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cgt-copy-area {

        text-align: center;
    }

    .cgt-statistics-row,
    .cgt-button-group {

        justify-content: center;
    }
}

/* MOBILE */

@media (max-width:576px) {

    .cgt-hero-shell {

        padding: 35px 5%;
    }

    .cgt-image-panel img {

        height: 340px;
    }

    .cgt-primary-btn,
    .cgt-secondary-btn {

        width: 100%;
        text-align: center;
    }

    .cgt-floating-tag {

        display: none;
    }
}

/* ==========================
CORPORATE BENTO SECTION
========================== */

.cgt-bento-section{

    padding:50px 6%;

    background:
    linear-gradient(
        135deg,
        #f8fafc,
        #e2e8f0,
        #f1f5f9
    );
}

.cgt-bento-container{

    width:min(1400px,92%);

    margin:auto;
}

/* HEADING */

.cgt-bento-heading{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:50px;
}

.cgt-bento-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#ffffff;

    color:#0f766e;

    font-weight:700;

    margin-bottom:20px;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.06);
}

.cgt-bento-heading h2{

    font-size:
    clamp(1.6rem,2vw,1.8rem);

    color:#0f172a;

    margin-bottom:18px;
}

.cgt-bento-heading p{

    line-height:1.8;

    color:#475569;
}

/* GRID */

.cgt-bento-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;
}

/* CARD */

.cgt-bento-card{

    padding:32px;

    background:#ffffff;

    border-radius:30px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

.cgt-bento-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(16,185,129,.06),
        rgba(251,191,36,.08)
    );

    opacity:0;

    transition:.4s;
}

.cgt-bento-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 60px
    rgba(0,0,0,.12);
}

.cgt-bento-card:hover::before{

    opacity:1;
}

/* ICON */

.cgt-bento-icon{

    width:75px;
    height:75px;

    border-radius:22px;

    background:
    rgba(16,185,129,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    margin-bottom:22px;

    transition:.4s;
}

.cgt-bento-card:hover
.cgt-bento-icon{

    transform:
    scale(1.1)
    rotate(10deg);
}

/* TEXT */

.cgt-bento-card h3{

    margin-bottom:15px;

    color:#0f172a;
}

.cgt-bento-card p{

    line-height:1.8;

    color:#64748b;
}

/* WIDE CARD */

.cgt-bento-wide{

    grid-column:
    span 2;
}

/* MOBILE */

@media(max-width:768px){

    .cgt-bento-grid{

        grid-template-columns:
        1fr;
    }

    .cgt-bento-wide{

        grid-column:auto;
    }
}

/* Duration Section */

.cgt-price-section{

    padding:50px 6%;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #111827,
        #1e293b
    );
}

.cgt-price-container{

    width:min(1400px,92%);
    margin:auto;
}

.cgt-price-heading{

    text-align:center;
    max-width:850px;
    margin:auto auto 50px;
}

.cgt-price-tag{

    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:
    rgba(255,255,255,.08);
    color:#ffffff;
    margin-bottom:20px;
}

.cgt-price-heading h2{

    color:#ffffff;
    margin-bottom:18px;

    font-size:
    clamp(1.6rem,2vw,1.8rem);
}

.cgt-price-heading p{

    color:#cbd5e1;
    line-height:1.8;
}

/* GRID */

.cgt-price-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

/* CARD */

.cgt-plan-card{

    width:340px;

    padding:30px;

    border-radius:30px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);

    border:
    1px solid
    rgba(255,255,255,.08);

    transition:.4s;
}

.cgt-plan-card:hover{

    transform:
    translateY(-10px);

    border-color:
    #10b981;
}

.cgt-plan-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#10b981;

    color:#fff;

    margin-bottom:20px;
}

.cgt-plan-card h3{

    color:#fff;

    margin-bottom:10px;
}

.cgt-plan-card h4{

    color:#cbd5e1;

    margin-bottom:20px;
}

.cgt-plan-price{

    font-size:2rem;

    color:#fbbf24;

    font-weight:800;

    margin-bottom:25px;
}

.cgt-plan-price span{

    display:block;

    font-size:1rem;

    color:#cbd5e1;

    margin-top:8px;
}

.cgt-plan-card ul{

    padding-left:20px;

    margin-bottom:25px;
}

.cgt-plan-card li{

    color:#e2e8f0;

    margin-bottom:12px;
}

.cgt-plan-btn{

    display:block;

    text-align:center;

    padding:15px;

    border-radius:16px;

    background:#fbbf24;

    color:#021526;

    text-decoration:none;

    font-weight:700;
}

.cgt-plan-btn:hover{

    background:#f59e0b;
}


.cgt-gallery-section{

    padding:50px 6%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );

    overflow:hidden;
}

.cgt-gallery-heading{

    text-align:center;

    max-width:850px;

    margin:auto auto 50px;
}

.cgt-gallery-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#dcfce7;

    color:#047857;

    margin-bottom:20px;
}

.cgt-gallery-heading h2{

    font-size:
    clamp(1.6rem,2vw,1.8rem);

    color:#0f172a;

    margin-bottom:18px;
}

.cgt-gallery-heading p{

    line-height:1.8;

    color:#64748b;
}

/* MARQUEE */

.cgt-gallery-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:
    cgtMarquee 30s linear infinite;
}

.cgt-gallery-item{

    width:350px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);
}

.cgt-gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;
}

@keyframes cgtMarquee{

    from{

        transform:
        translateX(0);
    }

    to{

        transform:
        translateX(-50%);
    }
}

@media(max-width:768px){

    .cgt-gallery-item{

        width:280px;
    }

    .cgt-gallery-item img{

        height:220px;
    }
}

/* ===========================
CORPORATE TERMINAL CTA
Unique Namespace: cxp-
=========================== */

.cxp-terminal-section{

    position:relative;

    overflow:hidden;

    padding:50px 6%;

    background:
    linear-gradient(
        135deg,
        #021526,
        #0f172a,
        #1e293b
    );
}

.cxp-terminal-container{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:
    55% 45%;

    gap:50px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* ORBS */

.cxp-gradient-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.25;
}

.cxp-orb-one{

    width:320px;
    height:320px;

    background:#10b981;

    top:-100px;
    left:-100px;
}

.cxp-orb-two{

    width:280px;
    height:280px;

    background:#0ea5e9;

    right:-80px;
    bottom:-80px;
}

/* LEFT */

.cxp-mini-pill{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    color:#ffffff;

    margin-bottom:20px;

    backdrop-filter:
    blur(20px);
}

.cxp-copy-panel h2{

    font-size:
    clamp(
        1.8rem,
        2.5vw,
        2rem
    );

    line-height:1.2;

    color:#ffffff;

    margin-bottom:20px;
}

.cxp-copy-panel p{

    color:#dbeafe;

    line-height:1.9;
}

/* GLASS PANEL */

.cxp-glass-panel{

    padding:35px;

    border-radius:35px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(30px);

    border:
    1px solid
    rgba(255,255,255,.12);

    box-shadow:
    0 30px 60px
    rgba(0,0,0,.25);
}

/* STATS */

.cxp-stat-deck{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;

    margin-bottom:30px;
}

.cxp-single-stat{

    text-align:center;

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.06);
}

.cxp-single-stat h3{

    color:#10b981;

    font-size:1.8rem;

    margin-bottom:10px;
}

.cxp-single-stat span{

    color:#dbeafe;

    font-size:.9rem;
}

/* BUTTONS */

.cxp-action-stack{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.cxp-primary-action,
.cxp-whatsapp-action,
.cxp-call-action{

    text-decoration:none;

    text-align:center;

    padding:16px;

    border-radius:18px;

    font-weight:700;

    transition:.35s ease;
}

.cxp-primary-action{

    background:#fbbf24;

    color:#021526;
}

.cxp-whatsapp-action{

    background:#10b981;

    color:#ffffff;
}

.cxp-call-action{

    background:
    rgba(255,255,255,.08);

    color:#ffffff;

    border:
    1px solid
    rgba(255,255,255,.15);
}

.cxp-primary-action:hover,
.cxp-whatsapp-action:hover,
.cxp-call-action:hover{

    transform:
    translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .cxp-terminal-container{

        grid-template-columns:1fr;

        text-align:center;
    }
}

@media(max-width:768px){

    .cxp-terminal-section{

        padding:45px 5%;
    }

    .cxp-stat-deck{

        grid-template-columns:1fr;
    }

    .cxp-glass-panel{

        padding:28px;
    }
}