*{
    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; }

/* LANGUAGE TOGGLE */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.3);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: pointer;
    padding: 4px 1px;
    line-height: 1;
    font-family: inherit;
    transition: color .2s ease;
}

.lang-btn.active {
    color: #fff;
}

.lang-btn:hover:not(.active) {
    color: rgba(255,255,255,.65);
}

.lang-sep {
    display: block;
    width: 1px;
    height: 9px;
    background: rgba(255,255,255,.14);
    flex-shrink: 0;
}

/* LANG FADE TRANSITION */
[data-i18n],
[data-i18n-html],
[data-i18n-placeholder] {
    transition: opacity 160ms ease;
}

html.lang-switching [data-i18n],
html.lang-switching [data-i18n-html] {
    opacity: 0 !important;
    transition: opacity 160ms ease !important;
}

@media (max-width: 640px) {
    nav { gap: 16px; }
    nav a { font-size: .82rem; }
    .lang-btn { font-size: .65rem; }
}

@media (max-width: 480px) {
    nav { gap: 12px; }
    nav a { font-size: .75rem; }
}

/* 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;
    justify-content: center;
    margin-bottom: 40px;
}

.ptab-pill {
    position: relative;
    display: inline-flex;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 5px;
}

.ptab-pill-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: 0;
    background: rgba(255,255,255,.1);
    border-radius: 999px;
    transition:
        width  .3s cubic-bezier(.22,1,.36,1),
        transform .3s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
    z-index: 0;
}

.portfolio-tabs button {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,.42);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 26px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .25s ease;
}

.portfolio-tabs button:hover {
    color: rgba(255,255,255,.78);
}

.portfolio-tabs button.active {
    color: #fff;
}

.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: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  transition: transform .22s ease, box-shadow .22s ease;
  flex-shrink: 0;
}

.support-fab-avatar {
  width: 34px;
  height: 34px;
  object-fit: cover;
  display: block;
}

.support-fab:hover .support-icon{
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(255,0,0,.3);
}

.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;
  }
}

/* ── CUSTOM CHAT WIDGET ── */

/* FAB hides smoothly while widget is open */
.support-fab[aria-expanded="true"] {
    opacity: 0 !important;
    transform: translateY(6px) scale(.96) !important;
    pointer-events: none !important;
}

.cw {
    position: fixed;
    bottom: 88px;
    right: 22px;
    width: 420px;
    height: 680px;
    background: #060606;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 24px 80px rgba(0,0,0,.75),
        0 8px 32px rgba(0,0,0,.5),
        0 0 80px rgba(220,0,0,.03);
    z-index: 9998;
    /* closed state */
    opacity: 0;
    transform: translateY(20px) scale(.97);
    pointer-events: none;
    transition:
        opacity 400ms cubic-bezier(.22,1,.36,1),
        transform 400ms cubic-bezier(.22,1,.36,1);
}

.cw.cw-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── header ── */
.cw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: #0b0b0b;
    border-bottom: 1px solid rgba(255,255,255,.055);
    flex-shrink: 0;
}

.cw-header-left {
    display: flex;
    align-items: center;
    gap: 11px;
}

/* chatbot avatar */
.cw-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
    overflow: hidden;
}

.cw-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cw-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cw-name {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.018em;
    line-height: 1.2;
}

.cw-subtitle {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

.cw-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 5px rgba(34,197,94,.55);
    flex-shrink: 0;
}

.cw-response-time {
    font-size: .63rem;
    color: rgba(255,255,255,.25);
    letter-spacing: .01em;
    line-height: 1.1;
}

.cw-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: none;
    color: rgba(255,255,255,.25);
    cursor: pointer;
    flex-shrink: 0;
    transition: color .18s ease, background .18s ease;
}

.cw-close-btn:hover {
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.06);
}

/* ── messages — primary focus, ~80% of height ── */
.cw-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.cw-messages::-webkit-scrollbar { width: 3px; }
.cw-messages::-webkit-scrollbar-track { background: transparent; }
.cw-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.07);
    border-radius: 3px;
}

/* ── message bubbles ── */
.cw-msg {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    max-width: 84%;
    animation: cwSlideIn 280ms cubic-bezier(.22,1,.36,1) both;
}

@keyframes cwSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cw-msg-in  { align-self: flex-start; }
.cw-msg-out { align-self: flex-end; }

/* bot avatar beside each incoming message */
.cw-msg-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
}

.cw-msg p {
    margin: 0;
    padding: 10px 14px;
    font-size: .865rem;
    line-height: 1.55;
    border-radius: 18px;
    word-break: break-word;
    white-space: pre-line;
}

.cw-msg-in p {
    background: #141414;
    color: rgba(255,255,255,.8);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255,255,255,.05);
}

.cw-msg-out p {
    background: linear-gradient(135deg, #d40000, #a80000);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* ── quick reply buttons ── */
.cw-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-left: 31px; /* align with bubble (avatar width + gap) */
    animation: cwSlideIn 300ms cubic-bezier(.22,1,.36,1) both;
    animation-delay: 80ms;
}

.cw-qr {
    background: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: rgba(255,255,255,.7);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 500;
    padding: 6px 14px;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
    white-space: nowrap;
}

.cw-qr:hover {
    border-color: rgba(204,0,0,.6);
    color: #fff;
    background: rgba(204,0,0,.08);
}

/* ── typing indicator ── */
.cw-typing .cw-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 2px;
}

.cw-typing .cw-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    animation: cwDot .9s ease-in-out infinite;
    flex-shrink: 0;
}

.cw-typing .cw-dots span:nth-child(2) { animation-delay: .18s; }
.cw-typing .cw-dots span:nth-child(3) { animation-delay: .36s; }

@keyframes cwDot {
    0%, 55%, 100% { transform: translateY(0);    opacity: .35; }
    27%            { transform: translateY(-5px); opacity: 1;   }
}

/* ── compose ── */
.cw-compose {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    padding: 11px 12px;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,.055);
    flex-shrink: 0;
}

.cw-textarea {
    flex: 1;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    font-size: .865rem;
    line-height: 1.5;
    padding: 10px 14px;
    resize: none;
    outline: none;
    max-height: 120px;
    overflow-y: auto;
    transition: border-color .22s ease, box-shadow .22s ease;
}

.cw-textarea::placeholder { color: rgba(255,255,255,.18); }

.cw-textarea:hover {
    border-color: rgba(255,255,255,.14);
}

.cw-textarea:focus {
    border-color: rgba(200,0,0,.5);
    box-shadow: 0 0 0 3px rgba(200,0,0,.08);
}

.cw-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: #c80000;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s ease, transform .2s cubic-bezier(.22,1,.36,1), box-shadow .18s ease;
}

.cw-send-btn:hover {
    background: #e50000;
    transform: scale(1.07);
    box-shadow: 0 0 18px rgba(200,0,0,.4);
}

.cw-send-btn:active {
    transform: scale(.92);
    box-shadow: none;
}

/* ── mobile: near full-screen ── */
@media (max-width: 480px) {
    .cw {
        left: 8px;
        right: 8px;
        width: auto;
        bottom: 80px;
        height: 82vh;
        max-height: 680px;
        border-radius: 20px;
    }
}


.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 ── */
.programs {
    padding: 140px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 40px;
}

.programs-header h2 {
    margin-bottom: 16px;
}

.programs-desc {
    font-size: .95rem;
    color: rgba(255,255,255,.4);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto;
}

/* ── proof bar ── */
.programs-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
    row-gap: 10px;
}

.programs-proof-bar span {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .03em;
    padding: 0 22px;
    white-space: nowrap;
}

.programs-proof-bar span strong {
    color: rgba(255,255,255,.7);
    font-weight: 700;
}

.ppb-sep {
    display: block;
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
    padding: 0 !important;
}

/* ── tab pill ── */
.program-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tab-pill {
    position: relative;
    display: flex;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 5px;
}

.tab-pill-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: rgba(255,255,255,.1);
    border-radius: 999px;
    transition: width .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
    z-index: 0;
}

.program-tab {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .25s ease;
}

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

/* ── card grid ── */
.programs-content-wrap {
    position: relative;
}

.program-content {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.program-content.active {
    display: grid;
}

/* floating state during tab transitions — both panels go absolute
   so the wrapper height can be locked without layout jumps */
.program-content.pc-exiting,
.program-content.pc-entering {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

/* ── card base ── */
.program-card {
    position: relative;
    background: #070707;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px;
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .4s cubic-bezier(.22,1,.36,1);
}

.program-card:hover {
    border-color: rgba(255,255,255,.15);
    box-shadow: 0 8px 48px rgba(0,0,0,.45);
    transform: translateY(-4px);
}

/* ── featured card ── */
.program-card.featured {
    border-color: rgba(220,0,0,.28);
    background: linear-gradient(160deg, #0d0505 0%, #070707 65%);
    box-shadow: 0 0 0 1px rgba(220,0,0,.12), 0 0 60px rgba(220,0,0,.04);
}

.program-card.featured:hover {
    border-color: rgba(220,0,0,.52);
    box-shadow:
        0 0 0 1px rgba(220,0,0,.3),
        0 0 60px rgba(220,0,0,.1),
        0 8px 48px rgba(0,0,0,.45);
    transform: translateY(-4px);
}

/* ── badge ── */
.program-badge {
    display: inline-flex;
    align-items: center;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #dc0000;
    background: rgba(220,0,0,.1);
    border: 1px solid rgba(220,0,0,.22);
    border-radius: 999px;
    padding: 4px 12px;
    margin: 0 auto 20px;
    width: fit-content;
}

/* ── card top ── */
.program-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.program-rank-icon {
    width: 112px;
    height: 112px;
    object-fit: contain;
    opacity: 1;
    display: block;
    margin: 0 auto 20px;
    filter: contrast(1.1);
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* subtle red glow — intermediate and premium tiers only */
.program-rank-icon.glow {
    filter: contrast(1.1) drop-shadow(0 0 9px rgba(200,0,0,.32));
}

.program-card:hover .program-rank-icon {
    transform: translateY(-2px) scale(1.05);
}

.program-card:hover .program-rank-icon.glow {
    filter: contrast(1.1) drop-shadow(0 0 14px rgba(200,0,0,.5));
}

.program-name {
    font-size: clamp(1.9rem, 2.4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #fff;
    line-height: 1;
    margin: 0 0 10px;
    text-align: center;
}

.program-eyebrow {
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin: 0;
    text-align: center;
}

/* ── card divider ── */
.program-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.06);
    margin: 24px 0;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .program-rank-icon {
        width: 80px;
        height: 80px;
    }
}

/* ── feature list ── */
.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.program-card ul li {
    font-size: .875rem;
    color: rgba(255,255,255,.52);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.program-card ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(220,0,0,.5);
}

/* ── footer: price + CTA ── */
.program-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.program-price {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    letter-spacing: .01em;
}

.program-price strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.program-price-custom {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    letter-spacing: -0.01em;
}

.program-card .btn-red,
.program-card .btn-outline {
    text-align: center;
    width: 100%;
    padding: 14px 20px;
    font-size: .85rem;
}

/* ── programs footer CTA ── */
.programs-footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 64px;
    padding: 52px 40px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    background: rgba(255,255,255,.018);
    text-align: center;
}

.programs-footer-cta-title {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.programs-footer-cta-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.38);
    line-height: 1.65;
    max-width: 440px;
    margin: 0 0 6px;
}

/* ── responsive ── */
@media (max-width: 1024px) {
    .programs {
        padding: 100px 40px;
    }
}

@media (max-width: 900px) {
    .programs {
        padding: 80px 24px;
    }

    .program-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .program-card {
        padding: 36px 28px 32px;
    }

    .programs-proof-bar span {
        padding: 0 14px;
        font-size: .74rem;
    }

    .programs-footer-cta {
        padding: 40px 24px;
        margin-top: 48px;
    }
}

/* ===== 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 ITEM INFO ── */
.pi-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-placeholder span {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,.1);
    user-select: none;
}

.pi-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    pointer-events: none;
}

.pi-name {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.pi-role {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.48);
    letter-spacing: .01em;
}

/* ── SHORT-FORM / VERTICAL VIDEO ── */
.portfolio-item.short-form {
    overflow: visible;
    border-radius: 0;
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}

.portfolio-item.short-form:hover {
    transform: none;
}

.short-form.thumbnail:hover {
    box-shadow: none;
}

.sf-phone {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(220,0,0,.25);
    box-shadow:
        0 0 40px rgba(220,0,0,.18),
        0 0 80px rgba(220,0,0,.07),
        0 8px 48px rgba(0,0,0,.5);
    cursor: pointer;
    transition: box-shadow .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1);
}

.sf-phone:hover {
    box-shadow:
        0 0 60px rgba(220,0,0,.3),
        0 0 120px rgba(220,0,0,.12),
        0 12px 60px rgba(0,0,0,.6);
    transform: translateY(-4px);
}

.sf-phone .pi-placeholder {
    aspect-ratio: 9 / 16;
    width: 100%;
    background: #060606;
}

.sf-phone .portfolio-video {
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sf-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 0 0;
    text-align: center;
}

.sf-info .pi-name {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.sf-info .pi-role {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    position: static;
}

.sf-info .pi-tag {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(220,0,0,.65);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── BRAND CARD (grid) ── */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    cursor: pointer;
    /* override .portfolio-item base styles that would clip the caption */
    overflow: visible;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.bc-phone {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    background: #060606;
    border: 1px solid rgba(220,0,0,.22);
    box-shadow:
        0 0 40px rgba(220,0,0,.15),
        0 0 80px rgba(220,0,0,.06),
        0 8px 48px rgba(0,0,0,.55);
    transition:
        box-shadow .45s cubic-bezier(.22,1,.36,1),
        transform .45s cubic-bezier(.22,1,.36,1),
        border-color .45s cubic-bezier(.22,1,.36,1);
}

.brand-card:hover .bc-phone {
    box-shadow:
        0 0 64px rgba(220,0,0,.28),
        0 0 120px rgba(220,0,0,.1),
        0 16px 64px rgba(0,0,0,.65);
    border-color: rgba(220,0,0,.45);
    transform: translateY(-6px) scale(1.012);
}

/* thumbnail image fills the phone frame on the card */
.bc-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.bc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
    pointer-events: none;
}

.bc-format-tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(220,0,0,.9);
    text-transform: uppercase;
}

.bc-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(204,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition:
        opacity .35s cubic-bezier(.22,1,.36,1),
        transform .35s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 0 24px rgba(204,0,0,.5), 0 0 48px rgba(204,0,0,.2);
}

.brand-card:hover .bc-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.bc-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 0 0;
    text-align: center;
}

.bc-caption-name {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.bc-caption-sub {
    font-size: .67rem;
    font-weight: 500;
    color: rgba(255,255,255,.38);
    letter-spacing: .02em;
}

/* ── BRAND MODAL ── */
#brand-modal {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s cubic-bezier(.22,1,.36,1);
}

#brand-modal.bm-open {
    opacity: 1;
    pointer-events: all;
}

.bm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bm-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 56px;
    background: #080808;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px;
    padding: 48px 52px;
    max-height: 90vh;
    box-shadow:
        0 0 80px rgba(0,0,0,.6),
        0 32px 96px rgba(0,0,0,.5);
    transform: translateY(20px) scale(.97);
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

#brand-modal.bm-open .bm-panel {
    transform: translateY(0) scale(1);
}

.bm-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.bm-close-btn:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.bm-phone-wrap {
    flex-shrink: 0;
}

.bm-phone {
    position: relative;
    width: clamp(200px, 22vw, 300px);
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(220,0,0,.25);
    box-shadow:
        0 0 50px rgba(220,0,0,.2),
        0 0 100px rgba(220,0,0,.07),
        0 20px 60px rgba(0,0,0,.6);
}

/* fallback poster img — always visible behind video until playback starts */
.bm-thumb-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
    z-index: 0;
}

.bm-phone video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    display: block;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* play button overlay */
.bm-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 1;
    transition: opacity .3s ease;
    pointer-events: all;
}

.bm-play-overlay--hiding {
    opacity: 0;
    pointer-events: none;
}

.bm-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(204,0,0,.92);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 0 24px rgba(204,0,0,.55),
        0 0 48px rgba(204,0,0,.2),
        0 4px 16px rgba(0,0,0,.4);
    transition: transform .2s cubic-bezier(.22,1,.36,1), background .2s;
}

.bm-play-btn:hover {
    background: #e60000;
    transform: scale(1.1);
}

/* Fullscreen: preserve 9:16, black letterbox — matches TikTok/Reels/Shorts */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen {
    object-fit: contain !important;
    background: #000 !important;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
}

/* right side */
.bm-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 220px;
    max-width: 280px;
}

.bm-eyebrow {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(220,0,0,.8);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bm-client-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 24px;
}

.bm-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.07);
    margin-bottom: 24px;
}

.bm-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.bm-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.bm-row dt {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
}

.bm-val {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-align: right;
}

.bm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #cc0000;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background .25s, transform .25s cubic-bezier(.22,1,.36,1);
    margin-top: auto;
}

.bm-cta:hover {
    background: #e60000;
    transform: translateY(-2px);
}

/* modal responsive */
@media (max-width: 700px) {
    .bm-panel {
        flex-direction: column;
        gap: 32px;
        padding: 36px 28px;
        max-height: 95vh;
        overflow-y: auto;
    }
    .bm-phone {
        width: clamp(160px, 55vw, 240px);
    }
    .bm-info {
        min-width: unset;
        max-width: 100%;
        width: 100%;
    }
}

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

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

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


/* ===== 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;
    }
}

/* ===== HERO SOCIAL PROOF ===== */

.hero-social-proof{
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.22);
    font-family: monospace;
    margin-top: 20px;
    text-align: right;
}

/* ===== PROOF OF PERFORMANCE ===== */

.proof{
    padding: 100px 8%;
}

.proof-inner{
    max-width: 1260px;
    margin: 0 auto;
}

.proof-header{
    text-align: center;
    margin-bottom: 64px;
}

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

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

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

.proof-card{
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .3s ease;
}

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

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

.proof-card h3{
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
    line-height: 1;
}

.proof-card p{
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    font-family: monospace;
    opacity: 1;
}

@media(max-width:900px){
    .proof{ padding: 80px 24px; }
    .proof-grid{ grid-template-columns: 1fr; border-radius: 20px; }
    .proof-card{ border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 48px 32px; }
    .proof-card:last-child{ border-bottom: none; }
    .proof-header h2{ font-size: 2.2rem; }
}


/* ── TESTIMONIAL PROOF ── */
.testimonial-proof {
    padding: 100px 8%;
}

.tp-header {
    text-align: center;
    margin-bottom: 64px;
}

.tp-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 10px;
}

.tp-quote-wrap {
    max-width: 740px;
    margin: 0 auto 52px;
    background: #060606;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 56px 56px 44px;
}

.tp-quote {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.18;
    color: #fff;
    font-style: normal;
    quotes: none;
    margin-bottom: 36px;
}

.tp-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.tp-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(220,0,0,.4);
    flex-shrink: 0;
}

.tp-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
}

.tp-check {
    color: #3b82f6;
    flex-shrink: 0;
}

.tp-subs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
}

.tp-yt {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    color: rgba(255,255,255,.28);
}

.tp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.tp-card {
    background: #080808;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}

.tp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220,0,0,.35);
}

.tp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tp-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #fff;
}

.tp-verified-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.tp-verified-label svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.tp-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tp-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-val {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.tp-lbl {
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

@media (max-width: 860px) {
    .tp-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .tp-quote-wrap { padding: 32px 24px 28px; }
    .tp-metrics { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .tp-val { font-size: 1.15rem; }
}

.verified-proof-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    align-self: flex-start;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.verified-proof-btn:hover {
    border-color: #dc0000;
    color: #fff;
    background: rgba(220,0,0,.06);
}

/* ── PROOF MODAL ── */
.proof-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

.proof-modal.open {
    pointer-events: all;
    opacity: 1;
}

.proof-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.proof-modal-box {
    position: relative;
    z-index: 1;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(.96) translateY(16px);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.proof-modal.open .proof-modal-box {
    transform: scale(1) translateY(0);
}

.proof-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
}

.proof-modal-header span {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.proof-modal-close {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: rgba(255,255,255,.6);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.proof-modal-close:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.proof-modal-img-wrap {
    overflow-y: auto;
    flex: 1;
}

.proof-modal-img-wrap img {
    width: 100%;
    display: block;
}

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

@media (max-width: 600px) {
    .verified-card {
        padding: 28px 22px 22px;
    }
    .verified-metric-value {
        font-size: 1.3rem;
    }
}

