*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.crisp-client,
.crisp-client *[class*="cc-"] {
    --crisp-display: none !important;
}

.crisp-client .cc-1xry,
.crisp-client .cc-kv6t,
.crisp-client .cc-unoo,
.crisp-client .cc-157aw,
.crisp-client .cc-1brb6 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

html{ scroll-behavior:smooth; }

body{
    background:#050505;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    top:-300px;
    right:-300px;
    width:900px;
    height:900px;
    background:red;
    filter:blur(280px);
    opacity:.03;
    pointer-events:none;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:12px;
color:red;
font-weight:700;
}

.logo img{
    width:55px;
    height:45px;
    border-radius:10px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{ color:red; }

/* HERO */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: #050505;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.hero-left{
    flex: 1;
    max-width: 640px;
}

.hero-left h1{
    font-size: clamp(3.6rem, 7.2vw, 6.75rem);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
    color: #fff;
}

.hero-sub{
    font-size: 1.05rem;
    color: rgba(255,255,255,.48);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 48px;
}

.hero-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
}

.hero-metric{
    display: block;
    font-size: clamp(6rem, 13vw, 11rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
    opacity: .9;
}

.hero-metric-label{
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    font-family: monospace;
    margin-top: 16px;
    line-height: 1.7;
}

.hero-buttons{
    display: flex;
    gap: 14px;
}

.hero-trust{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.hero-trust span{
    font-size: .7rem;
    color: rgba(255,255,255,.22);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span::before{
    content: '•';
    color: rgba(255,0,0,.35);
    font-size: .6rem;
}

.btn-red{
    background:red;
    color:white;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.btn-outline{
    border:1px solid white;
    color:white;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
}

.logo-divider{
    text-align:center;
    padding:60px 0;
}

.logo-divider img{
    width:120px;
    opacity:.15;
    transition:.4s;
}

.logo-divider img:hover{
    opacity:.4;
    transform:scale(1.1);
}

/* STATS */
.stats{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.stat{
    background:#111;
    padding:40px;
    border-radius:20px;
}

.stat h3{
    font-size:3rem;
    color:red;
    margin-bottom:10px;
}

/* PORTFOLIO */
.portfolio{
    padding:100px 8%;
}

.portfolio h2{
    font-size:3rem;
    margin-bottom:40px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.grid img{
    width:100%;
    border-radius:20px;
    cursor:pointer;
    transition:.4s;
}

.grid img:hover{
    transform:scale(1.03);
    filter:brightness(1.1);
}

/* RESULTS */
.results{
    padding:100px 8%;
    text-align:center;
}

.results h2{
    font-size:3rem;
    margin-bottom:50px;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    text-align:center;
}

.result-card{
    position:relative;
    background:#111;
    border-radius:20px;
    padding:40px;
    border:1px solid rgba(255,0,0,.3);
    overflow:hidden;
    transition: all 0.4s ease;
    box-shadow:0 0 20px rgba(255,0,0,.1);
    cursor:default;
}

.result-card:hover{
    transform:scale(1.05) translateY(-10px);
    border:1px solid rgba(255,0,0,.7);
    background:linear-gradient(180deg, rgba(255,0,0,.08), #111);
    box-shadow:0 0 60px rgba(255,0,0,.25);
}

/* Circle icons */
.result-circle{
    width:110px;
    height:110px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.5rem;
    border:1px solid rgba(255,0,0,.3);
    position:relative;
    transition:.4s;
}

.result-card:hover .result-circle{
    transform:scale(1.1);
    box-shadow:0 0 30px rgba(255,0,0,.3);
}

.result-card h3{
    font-size:3rem;
    color:red;
    margin-bottom:10px;
}

.result-card h3::after{
    content:"";
    display:block;
    width:120px;
    height:3px;
    margin:15px auto;
    background:red;
    border-radius:999px;
    box-shadow:0 0 15px red;
}

.result-card h4,
.result-card .title{
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:10px;
}

.result-card p,
.result-card .subtitle{
    font-size:.95rem;
    opacity:.9;
}

/* Floating animation for cards */
.result-card{
    animation:floatCard 6s ease-in-out infinite;
}

.result-card:nth-child(2){animation-delay:.5s;}
.result-card:nth-child(3){animation-delay:1s;}

@keyframes floatCard{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}



/* ABOUT */
.about {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03); /* leve destaque */
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    padding: 80px;
}

.about img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 10px rgba(255,0,0,0.2);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255,0,0,0.4);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 10px rgba(255,0,0,0.2);
    }
}

.about img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 25px rgba(255,0,0,0.5);
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

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

    .about img{
        margin: 0 auto 20px auto;
    }
}

/* CONTACT */
.contact{
    padding:100px 8%;
    text-align:center;
}

.contact h2{
    font-size:3rem;
    margin-bottom:30px;
}

.contact p{
    margin-bottom:12px;
    font-size:1.2rem;
}

.footer-logo{
    width:120px;
    margin-bottom:25px;
}


/* MEDIA */
@media(max-width:900px){
    .hero{ flex-direction: column; justify-content: center; padding: 120px 8% 80px; gap: 60px; }
    .hero-left{ max-width: 100%; }
    .hero-right{ align-items: flex-start; text-align: left; }
    .hero-metric{ font-size: clamp(4.5rem, 18vw, 7rem); }
    .stats{grid-template-columns:1fr;}
    .grid{grid-template-columns:1fr;}
    .about{grid-template-columns:1fr;}
    .results-grid{grid-template-columns:1fr;}
}
/* ===== Premium Background for About Me ===== */
.about {
    position: relative;
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,0,0,0.1) 0%, transparent 70%);
    animation: rotateBG 20s linear infinite;
    z-index: 0;
}

.about img {
    position: relative;
    z-index: 1;
}

.about div {
    position: relative;
    z-index: 1;
}

.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.video-card{
  position:relative;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  transition:.4s;
}

.video-card img{
  width:100%;
  display:block;
}

.video-card:hover{
  transform:scale(1.03);
  box-shadow:0 0 35px rgba(255,0,0,.35);
}

.play-button{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:3rem;
  color:white;
  text-shadow:0 0 10px rgba(0,0,0,.7);
  pointer-events:none;
}

.video-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
  cursor:pointer;
}

.video-modal video{
  max-width:90%;
  max-height:80%;
  border-radius:12px;
}

.thumbnail{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.thumbnail img{
    width:100%;
    display:block;
    transition:.5s;
}

.thumbnail::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.0);
    transition:.4s;
    z-index:1;
    pointer-events:none;
}

.thumbnail.video-active::before{
    display:none;
}

.thumbnail.video-active .play-btn{
    display:none;
}

.play-btn{
    pointer-events:none;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.8);

    width:90px;
    height:90px;

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

    border-radius:50%;

    background:rgba(255,0,0,.85);

    font-size:32px;

    opacity:0;

    transition:.35s;

    z-index:2;

    box-shadow:
    0 0 20px rgba(255,0,0,.4),
    0 0 40px rgba(255,0,0,.2);
}

.thumbnail:hover .play-btn{

    opacity:1;

    transform:
    translate(-50%,-50%)
    scale(1);

}

.thumbnail:hover img{

    transform:scale(1.08);

}

.thumbnail:hover{

    box-shadow:
    0 0 25px rgba(255,0,0,.25);

}

.play-btn::after{
    content:"PLAY";
    position:absolute;
    top:105px;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.portfolio-video{
    width:100%;
    display:block;
    border-radius:20px;
    aspect-ratio:16 / 9;
    border:none;
    position:relative;
    z-index:50;
}

.portfolio-tabs{

    display:flex;
    gap:15px;
    margin-bottom:35px;
    flex-wrap:wrap;

}

.portfolio-tabs button{

    background:#0d0d0d;
    color:rgba(255,255,255,.6);

    border:1px solid rgba(255,255,255,.08);

    padding:12px 24px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.portfolio-tabs button:hover{

    border-color:rgba(255,255,255,.25);
    color:#fff;

    transform:translateY(-2px);

}

.portfolio-tabs button.active{

    background:red;
    color:#fff;
    border-color:red;

}

.portfolio-item{
    transition: .4s;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.portfolio-item img{
    width:100%;
    display:block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.portfolio-item:hover img{
    transform: scale(1.04);
}

/* SOFTWARE */

.why{
    padding: 120px 60px;
    max-width: 1260px;
    margin: 0 auto;
}

.why-header{
    text-align: center;
    margin-bottom: 80px;
}

.why-header .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-header h2{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 16px;
}

.why-subtitle{
    font-size: .95rem;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
}

.why-grid{
    display: grid;
    gap: 20px;
}

.why-card{
    background: #070707;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    padding: 56px 44px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        border-color .35s ease;
}

.why-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.2);
}

.why-card h3{
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -.025em;
    margin-bottom: 14px;
}

.why-card p{
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    font-size: .95rem;
}

@media(max-width:900px){

    .why{
        padding: 80px 24px;
    }

    .why-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-header h2{
        font-size: 2.2rem;
    }

}

/* =========================
   COMMUNITY
========================= */

.community{
    padding:120px 8%;
    text-align:center;
}

.community h2{
    font-size:3rem;
    margin-bottom:15px;
}

.community-subtitle{
    color:#aaa;
    font-size:1.1rem;
    margin-bottom:60px;
}

.community-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.community-card{

    position:relative;

    background:#0b0b0b;

    border:1px solid rgba(255,0,0,.15);

    border-radius:24px;

    padding:50px 30px;

    text-decoration:none;

    color:white;

    overflow:hidden;

    transition:.4s;

}

.community-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.04),
        transparent
    );

    transition:.8s;

}

.community-card:hover::before{

    left:100%;

}

.community-card:hover{

    transform:translateY(-10px);

    border-color:red;

    box-shadow:
    0 0 30px rgba(255,0,0,.2),
    0 0 80px rgba(255,0,0,.08);

}

.community-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px auto;

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

}

.community-icon img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.4s;

}

.community-card:hover .community-icon img{

    transform:scale(1.12);

    filter:drop-shadow(
        0 0 15px rgba(255,255,255,.15)
    );

}

.community-card h3{

    font-size:1.6rem;

    margin-bottom:10px;

}

.community-card span{

    color:#aaa;

    font-size:1rem;

    transition:.3s;

}

.community-card:hover span{

    color:white;

}

@media(max-width:1100px){

    .community-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .community-grid{

        grid-template-columns:1fr;

    }

}

/* ===== Community Icons Standardization ===== */
/* COMMUNITY CARDS ICONS */
.community-card .community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;        /* tamanho fixo */
    height: 70px;       /* tamanho fixo */
    margin: 0 auto 15px auto;
}

.community-card .community-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-circle{

    width:110px;
    height:110px;

    margin:0 auto 30px;

    border-radius:50%;

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

    font-size:2rem;

    border:1px solid rgba(255,0,0,.3);

    position:relative;

    transition:.4s;

}

.result-circle::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:1px solid rgba(255,0,0,.15);

    transition:.5s;

}

.result-card:hover .result-circle{

    transform:scale(1.08);

    box-shadow:
    0 0 30px rgba(255,0,0,.3);

}

.result-card:hover .result-circle::before{

    inset:-18px;

}

.result-card{

    position:relative;

    overflow:hidden;

}

.result-card::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:250%;

    height:250%;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,.08),
        transparent 70%
    );

    opacity:0;

    transition:.6s;

}

.result-card:hover::after{

    opacity:1;

}

.result-card h3::after{

    content:"";

    display:block;

    width:120px;

    height:3px;

    margin:20px auto;

    background:red;

    border-radius:999px;

    box-shadow:
    0 0 15px red;

}

.result-card{

    animation:
    floatCard 6s ease-in-out infinite;

}

.result-card:nth-child(2){

    animation-delay:.5s;

}

.result-card:nth-child(3){

    animation-delay:1s;

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

.results-header {
    text-align:center;
    margin-bottom:60px;
}

.results-header .small-title {
    font-size:0.9rem;
    letter-spacing:2px;
    opacity:0.6;
    margin-bottom:10px;
}

.results-header h2 {
    font-size:3rem;
    margin-bottom:10px;
}

.results-header .description {
    font-size:1rem;
    opacity:0.8;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    text-align:center;
}

/* ===== Results Cards Highlight Effect ===== */
.result-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(255,0,0,.3);
    background: #111;
    box-shadow: 0 0 20px rgba(255,0,0,.1);
    border-radius: 20px;
    padding: 40px;
}

.result-card:hover {
    transform: scale(1.04) translateY(-10px);
    border: 1px solid rgba(255,0,0,.7);
    background: linear-gradient(180deg, rgba(255,0,0,.08), #111);
    box-shadow: 0 0 60px rgba(255,0,0,.25);
}

/* Optional: center icons and titles nicely */
.result-card .result-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.result-card h3 {
    font-size: 3rem;
    color: red;
    margin-bottom: 5px;
}

.result-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.result-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* =========================
   PREMIUM BUTTONS
========================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-red,
.btn-outline{

    position:relative;
    overflow:hidden;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.5px;

    transition:.35s;

}

/* RED BUTTON */

.btn-red{

    background:linear-gradient(
        135deg,
        #ff0000,
        #c40000
    );

    color:white;

    box-shadow:
    0 0 25px rgba(255,0,0,.25);

}

.btn-red:hover{

    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 0 40px rgba(255,0,0,.45);

}

/* OUTLINE BUTTON */

.btn-outline{

    border:1px solid rgba(255,255,255,.2);

    color:white;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(10px);

}

.btn-outline:hover{

    transform:
    translateY(-4px)
    scale(1.03);

    border-color:red;

    box-shadow:
    0 0 30px rgba(255,0,0,.25);

}

/* SHINE EFFECT */

.btn-red::before,
.btn-outline::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );

    transform:skewX(-25deg);

}

.btn-red:hover::before,
.btn-outline:hover::before{

    animation:buttonShine .8s ease;

}

@keyframes buttonShine{

    100%{

        left:160%;

    }

}

/* CLICK EFFECT */

.btn-red:active,
.btn-outline:active{

    transform:scale(.97);

}


/* =========================
   SOCIALS
========================= */

.socials{

    padding:100px 8%;
    text-align:center;

}

.socials h2{

    font-size:3rem;
    margin-bottom:50px;

}

.social-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.social-card{

    background:#0d0d0d;

    border:1px solid rgba(255,0,0,.15);

    border-radius:22px;

    padding:35px;

    text-decoration:none;

    color:white;

    transition:.35s;

}

.social-card:hover{

    transform:translateY(-8px);

    border-color:red;

    box-shadow:
    0 0 35px rgba(255,0,0,.18);

}

.social-card img{

    width:70px;
    height:70px;

    object-fit:contain;

    margin-bottom:20px;

}

.social-card span{

    display:block;

    font-size:1.05rem;
    font-weight:700;

}

/* MOBILE */

@media(max-width:900px){

    .social-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:600px){

    .social-grid{

        grid-template-columns:1fr;

    }

}

/* =========================
   SUPPORT FLOAT BUTTON
========================= */

.support-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(
    180deg,
    rgba(18,18,18,.95),
    rgba(8,8,8,.95)
  );
  backdrop-filter: blur(20px);
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    0 0 20px rgba(255,0,0,.08);
  color: #fff;
  cursor: pointer;

  transform: translateY(0);
  opacity: 1;
  transition:
    transform .25s ease,
    opacity .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.support-fab.chat-opening{
  opacity: 0;
  transform: translateY(8px) scale(.96);
  pointer-events: none;
}

.support-fab:hover{
  transform: translateY(-2px);
  border-color: rgba(255,0,0,.55);
  box-shadow:
    0 0 25px rgba(255,0,0,.15),
    0 12px 40px rgba(0,0,0,.4);
}

.support-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  box-shadow: 0 0 0 1px rgba(255,0,0,.25) inset;
  background: rgba(255,0,0,.06);
  transition: transform .22s ease, filter .22s ease;
}

.support-fab:hover .support-icon{
  transform: rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255,0,0,.35));
}

.support-text{
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  font-size: 14.5px;
}

@media(max-width:600px){
  .support-fab{
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
  .support-text{
    font-size: 14px;
  }
}


.contact p:first-of-type{
    max-width:700px;
    margin:0 auto 25px;
    line-height:1.6;
    color:#cfcfcf;
}

.contact p:last-of-type{
    font-size:1.2rem;
    font-weight:600;
    color:white;
}

/* =========================
   SERVICES / PACKAGES
========================= */

.services{
    padding:120px 8%;
    text-align:center;
}

.services-header{
    margin-bottom:60px;
}

.services-header .small-title{
    font-size:.9rem;
    letter-spacing:2px;
    opacity:.6;
    margin-bottom:10px;
}

.services-header h2{
    font-size:3rem;
    margin-bottom:10px;
}

.services-header .description{
    font-size:1rem;
    opacity:.8;
    max-width:720px;
    margin:0 auto;
    line-height:1.6;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    background:#0f0f0f;
    border:1px solid rgba(255,0,0,.15);
    border-radius:24px;
    padding:40px 30px;
    text-align:left;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 0 20px rgba(0,0,0,.25);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:red;
    box-shadow:
    0 0 35px rgba(255,0,0,.18),
    0 0 80px rgba(255,0,0,.06);
}

.service-card.featured{
    background:linear-gradient(180deg, rgba(255,0,0,.08), #0f0f0f);
    border-color:rgba(255,0,0,.35);
}

.service-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,0,0,.12);
    color:#ff5a5a;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.service-card h3{
    font-size:1.8rem;
    margin-bottom:12px;
}

.service-card p{
    color:#cfcfcf;
    line-height:1.6;
    margin-bottom:20px;
}

.service-card ul{
    list-style:none;
    display:grid;
    gap:10px;
}

.service-card ul li{
    position:relative;
    padding-left:22px;
    color:#f0f0f0;
    opacity:.95;
    line-height:1.5;
}

.service-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:red;
    font-weight:700;
}

@media(max-width:900px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .services-header h2{
        font-size:2.4rem;
    }
}

.programs{
    padding:120px 8%;
    text-align:center;
}

.programs-header{
    margin-bottom:60px;
}

.programs-header h2{
    font-size:3rem;
    margin-bottom:15px;
}

.programs-header .description{
    max-width:800px;
    margin:0 auto;
    color:#aaa;
    line-height:1.7;
}

.program-tabs{

    display:inline-flex;

    background:#0d0d0d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:8px;

    margin-bottom:60px;

}

.program-tab{

    background:none;

    border:none;

    color:#999;

    padding:14px 28px;

    cursor:pointer;

    border-radius:12px;

    transition:.3s;

}

.program-tab.active{

    background:red;

    color:white;

}

.program-content{
    display: none;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
}

.program-content.active{
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.program-card{

    position: relative;

    background: #0b0b0b;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 24px;

    padding: 40px 30px;

    overflow: hidden;

    text-align: left;

    box-shadow: none;

    opacity: 0;
    transform: translateY(40px);

    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        border-color .4s ease,
        box-shadow .4s ease,
        opacity .5s ease;

}

.program-card.show{
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover{

    transform: translateY(-4px);

    border-color: rgba(255,255,255,.2);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 25px rgba(255,0,0,.08);

}

.program-card::before,
.program-card::after{
    display: none;
}

.program-card .btn-red::before,
.program-card .btn-outline::before{
    content: none !important;
    display: none !important;
}

.program-card.featured{

    border-color: rgba(255,0,0,.35);

    background: #0b0b0b;

    transform: scale(1.04);

    box-shadow:
        0 0 40px rgba(255,0,0,.06),
        0 24px 60px rgba(0,0,0,.5);

}

.program-card.featured:hover{

    transform: scale(1.04) translateY(-4px);

}

.program-card h3{

    font-size:2rem;

    margin-bottom:10px;

}

.program-target{

    color:#bbb;

    line-height:1.6;

    margin-bottom:25px;

}

.program-card ul{

    list-style:none;

    display:grid;
    gap:12px;

    margin-bottom:30px;

}

.program-card ul li{

    padding-left:22px;

    position:relative;

}

.program-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:red;

}

.program-price{

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:25px;

    color:white;

}

@media(max-width:1000px){

    .program-content.active{

        grid-template-columns: 1fr;

    }

}

/* ===== PROCESS SECTION ===== */

.process{
    padding: 140px 60px;
    max-width: 1260px;
    margin: 0 auto;
}

.process-header{
    text-align: center;
    margin-bottom: 96px;
}

.process-header .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-header h2{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 20px;
}

.process-subtitle{
    font-size: 1rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card{
    background: #050505;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 28px;
    padding: 64px 52px;
    min-height: 460px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform .4s cubic-bezier(.22,1,.36,1),
        border-color .35s ease,
        box-shadow .35s ease;
}

.process-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.process-bg-number{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.05em;
}

.process-icon{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,0,0,.65);
    margin-bottom: 32px;
}

.process-label{
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(255,0,0,.5);
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: monospace;
}

.process-card h3{
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.process-card p{
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    font-size: .95rem;
}

@media(max-width:900px){
    .process{
        padding: 80px 24px;
    }
    .process-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .process-header h2{
        font-size: 2.2rem;
    }
}

/* ===== CASE STUDY ANIMATIONS ===== */

.cs-anim{
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity .7s cubic-bezier(.22,1,.36,1),
        transform .7s cubic-bezier(.22,1,.36,1);
}

.cs-anim.visible{
    opacity: 1;
    transform: translateY(0);
}

/* ===== CASE STUDIES ===== */

.case-studies{
    padding: 120px 60px;
    max-width: 1260px;
    margin: 0 auto;
}

.cs-header{
    text-align: center;
    margin-bottom: 80px;
}

.cs-header .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cs-header h2{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 16px;
}

.cs-subtitle{
    font-size: 1rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
}

.cs-featured{
    background: #070707;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 28px;
    padding: 64px;
}

.cs-top{
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.cs-tag{
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(255,0,0,.55);
    text-transform: uppercase;
    font-family: monospace;
    margin-bottom: 18px;
}

.cs-top h3{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 14px;
}

.cs-overview{
    font-size: 1rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 560px;
}

.cs-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cs-block{
    margin-bottom: 40px;
}

.cs-block:last-child{
    margin-bottom: 0;
}

.cs-block h4,
.cs-right h4{
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 16px;
    font-family: monospace;
}

.cs-block p{
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    font-size: .95rem;
}

.cs-block ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-block ul li{
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    padding-left: 16px;
    position: relative;
}

.cs-block ul li::before{
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255,0,0,.4);
    font-size: .8rem;
}

.cs-metrics{
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 16px;
}

.cs-metric{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cs-value{
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.04em;
    color: #fff;
    line-height: 1;
}

.cs-metric-label{
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: monospace;
}

@media(max-width:900px){
    .case-studies{ padding: 80px 24px; }
    .cs-featured{ padding: 36px 28px; }
    .cs-columns{ grid-template-columns: 1fr; gap: 40px; }
    .cs-header h2{ font-size: 2.2rem; }
    .cs-top h3{ font-size: 1.6rem; }
    .cs-value{ font-size: 2.2rem; }
}

/* ===== WHY ASYMMETRIC ===== */

.why-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.why-secondary{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card.why-featured{
    min-height: 340px;
    justify-content: flex-start;
    padding: 60px 52px;
}

.why-card.why-featured h3{
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-card.why-featured p{
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,.78);
}

@media(max-width:900px){
    .why-grid{ grid-template-columns: 1fr; }
}

/* ===== CONTACT UPDATES ===== */

.contact-subtitle{
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 36px;
    text-align: center;
}

.contact-email{
    margin-top: 24px;
    color: rgba(255,255,255,.3);
    font-size: .9rem;
}

/* ===== CTA BUTTON (contact) ===== */

.cta-button{
    position: relative;
    overflow: hidden;
    display: inline-block;

    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;

    background: linear-gradient(135deg, #ff0000, #c40000);
    box-shadow: 0 0 25px rgba(255,0,0,.2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.cta-button:hover{
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255,0,0,.35);
}

.cta-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transform: skewX(-20deg);
    animation: ctaShine 4s infinite;
}

@keyframes ctaShine{
    0%   { left: -120%; }
    30%  { left: 130%; }
    100% { left: 130%; }
}

/* ===== OVERRIDES — remove legacy animations ===== */

/* About section: kill glow pulse and rotating radial */
.about img { animation: none; }
.about::before { display: none; }

/* floatCard on result-cards: remove */
.result-card { animation: none !important; }

/* ===== HERO DIVIDER ===== */

.hero-divider{
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,.08) 30%,
        rgba(255,255,255,.08) 70%,
        transparent 100%
    );
    flex-shrink: 0;
}

@media(max-width:900px){
    .hero-divider{ display: none; }
}

/* ===== HERO METRIC EYEBROW ===== */

.hero-metric-eyebrow{
    display: block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,0,0,.5);
    font-family: monospace;
    margin-bottom: 12px;
    text-align: right;
}

/* ===== CREATOR RESULTS ===== */

.creator-results{
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 0 8%;
}

.cr-inner{
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 80px;
    padding: 72px 0;
}

.cr-label-row .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.6);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cr-subtitle{
    font-size: .95rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    max-width: 300px;
}

.cr-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    overflow: hidden;
}

.cr-card{
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .3s ease;
}

.cr-card:last-child{
    border-right: none;
}

.cr-card:hover{
    background: rgba(255,255,255,.02);
}

.cr-value{
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
    line-height: 1;
}

.cr-metric-label{
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    font-family: monospace;
}

@media(max-width:900px){
    .cr-inner{
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 0;
    }
    .cr-subtitle{ max-width: 100%; }
    .cr-card{ padding: 36px 24px; }
}

/* ===== PORTFOLIO BADGE ===== */

.portfolio-badge{
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(5,5,5,.9);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,.88);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity .3s ease,
        transform .3s ease;
    pointer-events: none;
    z-index: 3;
}

.portfolio-item:hover .portfolio-badge{
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECOND CASE STUDY SPACING ===== */

.cs-second{
    margin-top: 40px;
}

/* ===== TESTIMONIALS ===== */

.testimonials{
    padding: 120px 60px;
    max-width: 1260px;
    margin: 0 auto;
}

.testimonials-header{
    text-align: center;
    margin-bottom: 72px;
}

.testimonials-header .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonials-header h2{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1.2;
}

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

.testimonial-card{
    background: #070707;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    transition:
        border-color .35s ease,
        transform .4s cubic-bezier(.22,1,.36,1);
}

.testimonial-card:hover{
    border-color: rgba(255,255,255,.18);
    transform: translateY(-4px);
}

.testimonial-quote{
    font-size: .97rem;
    line-height: 1.82;
    color: rgba(255,255,255,.72);
    position: relative;
    padding-top: 40px;
}

.testimonial-quote::before{
    content: '"';
    position: absolute;
    top: -4px;
    left: 0;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255,255,255,.07);
    font-weight: 800;
    font-style: normal;
}

.testimonial-author{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.testimonial-name{
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.testimonial-role{
    font-size: .72rem;
    color: rgba(255,255,255,.32);
    letter-spacing: .08em;
    display: block;
    font-family: monospace;
}

@media(max-width:900px){
    .testimonials{ padding: 80px 24px; }
    .testimonials-grid{ grid-template-columns: 1fr; gap: 16px; }
    .testimonials-header h2{ font-size: 2.2rem; }
}

/* ===== ABOUT — full override ===== */

.about{
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    padding: 120px 8%;
    max-width: 1260px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: static;
}

.about::before{ display: none; }

/* left column */

.about-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.about-img{
    width: 100%;
    border-radius: 20px;
    display: block;
    animation: none;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.about-img:hover{
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.founder-card{
    background: #070707;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.founder-identity{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-name{
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
}

.founder-role{
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: rgba(255,255,255,.32);
    text-transform: uppercase;
    font-family: monospace;
}

.founder-metrics{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.founder-metric{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-metric-value{
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1;
}

.founder-metric-label{
    display: block;
    font-size: .6rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.28);
    text-transform: uppercase;
    font-family: monospace;
    line-height: 1.4;
}

/* right column */

.about-right{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding-top: 8px;
}

.about-right .small-title{
    font-size: .68rem;
    letter-spacing: .25em;
    color: rgba(255,0,0,.55);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-right h2{
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 36px;
}

.about-body{
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 640px;
    margin-bottom: 40px;
}

.about-body p{
    font-size: .97rem;
    line-height: 1.82;
    color: rgba(255,255,255,.62);
    opacity: 1;
}

.about-capabilities{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 540px;
    margin-bottom: 40px;
}

.about-capabilities li{
    font-size: .9rem;
    color: rgba(255,255,255,.72);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.about-capabilities li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255,0,0,.65);
    font-weight: 700;
    font-size: .85rem;
}

.about-attribution{
    font-size: .8rem;
    color: rgba(255,255,255,.28);
    letter-spacing: .1em;
    font-family: monospace;
    text-transform: uppercase;
    opacity: 1;
}

/* about mobile */
@media(max-width:900px){
    .about{
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 24px;
    }
    .about-img{
        max-width: 340px;
        margin: 0 auto;
    }
    .about-right h2{
        font-size: 2rem;
    }
}

/* ===== PROGRAM TABS — pill slider ===== */

.program-tabs{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.tab-pill{
    position: relative;
    display: inline-flex;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 6px;
    gap: 0;
}

.tab-pill-slider{
    position: absolute;
    top: 6px;
    left: 0;
    height: calc(100% - 12px);
    background: #e00;
    border-radius: 11px;
    pointer-events: none;
    z-index: 0;
    transition:
        transform 350ms cubic-bezier(.22,1,.36,1),
        width 350ms cubic-bezier(.22,1,.36,1);
}

.program-tab{
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,.42);
    padding: 13px 30px;
    cursor: pointer;
    border-radius: 11px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .25s ease;
    white-space: nowrap;
}

.program-tab.active{
    color: #fff;
    background: none;
}

.program-tab:hover:not(.active){
    color: rgba(255,255,255,.72);
}

