:root {
    --ch-color:     #EF4444;
    --ch-color-dark:#dc2626;
    --ch-color-rgb: 239, 68, 68;
}

/* HERO  */
.ads-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FEF2F2;
}

.ads-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 30% 40%, rgba(220, 38, 38, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 60%, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
}

.ads-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.ads-hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.03) 30%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
}

.ads-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ads-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.20);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 24px;
}

.ads-badge-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: adsPulse 2s infinite;
}

@keyframes adsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ads-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ads-hero-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.ads-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ads-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--ch-color), var(--ch-color-dark));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(var(--ch-color-rgb), 0.3);
}

.ads-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--ch-color-rgb), 0.4);
    color: #fff;
}

.ads-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #0a1628;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, 0.25);
    text-decoration: none;
    transition: all 0.3s;
}

.ads-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.ads-hero-stats {
    display: flex;
    gap: 40px;
}

.ads-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ads-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #dc2626;
    margin-bottom: 4px;
}

.ads-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
}

.ads-stat-label {
    font-size: 13px;
    color: #5b6780;
}

/* Security Verify Visual */
.ads-dashboard{
    width:520px;
    height:420px;
    border-radius:24px;
    position:relative;
    overflow:hidden
}
.monitor{
    position:absolute;
    left:50%;
    bottom:45px;
    transform:translateX(-50%);
    width:430px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 18px 35px rgba(0,0,0,.25)
}
.topbar{
    height:42px;
    background:#1877F2;
    display:flex;
    align-items:center;
    padding:0 12px;
    color:#fff
}
.logo{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#fff;
    color:#1877F2;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center
}
.search{
    height:10px;
    width:110px;
    background:#fff4;
    border-radius:20px;
    margin-left:12px
}
.top-icons{
    margin-left:auto;
    display:flex;
    gap:8px
}
.top-icons span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff
}
.body{
    display:flex
}
.sidebar{
    width:60px;
    background:#f3f4f7;
    padding:10px
}
.avatar,.profile{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#1877F2
}
.sidebar span{
    display:block;
    height:6px;
    background:#cdd3df;
    border-radius:10px;
    margin-top:10px
}
.feed{
    flex:1;
    padding:10px
}
.cards{
    display:flex;
    gap:8px
}
.cards div{
    flex:1;
    background:#1877F2;
    color:#fff;
    font-size:10px;
    text-align:center;
    padding:10px;
    border-radius:8px
}
.post{
    margin-top:10px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden
}
.head{
    display:flex;
    align-items:center;
    padding:8px
}
.text{
    margin-left:8px;
    display:flex;
    flex-direction:column;
    font-size:10px
}
.banner{
    height:90px;
    background:linear-gradient(90deg,#1877F2,#66a4ff)
}
.buttons{
    display:flex;
    gap:8px;
    padding:8px
}
button{
    background:#1877F2;
    color:#fff;
    border:none;
    padding:6px 10px;
    border-radius:20px;
    font-size:10px
}
.secondary{
    background:#eef2f7;
    color:#333
}
.reactions{
    padding:0 8px 8px;
    font-size:11px;
    display:flex;
    justify-content:space-between
}
.stats{
    width:105px;
    border-left:1px solid #eee;
    background:#fafbfc;
    padding:10px
}
.stats h4{
    font-size:11px;
    color:#1877F2;
    margin-bottom:8px
}
.stats div{
    display:flex;
    justify-content:space-between;
    font-size:9px;
    margin:6px 0
}
.progress{
    height:6px;
    background:#d8e4ff;
    border-radius:10px;
    overflow:hidden;
    display:block!important
}
.progress div{
    height:100%;
    width:75%;
    background:#1877F2
}
.like{
    position:absolute;
    border:2px dashed #1877f2;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    animation:f 4s infinite
}
.like1{
    width:60px;
    height:60px;
    left:65px;
    top:30px
}
.like2{
    width:80px;
    height:80px;
    left:18px;
    top:120px
}
.emoji{
    position:absolute;
    font-size:40px;
    animation:f 3s infinite
}
.e1{
    right:40px;
    top:0px
}
.e2{
    right:70px;
    top:120px
}
.e3{
    right:0px;
    top:185px
}
.coins{
    position:absolute;
    right:25px;
    bottom:40px
}
.coins span{
    display:inline-block;
    width:34px;
    height:12px;
    border-radius:50%;
    background:#ffc107;
    margin-left:-12px;
    box-shadow:0 4px 0 #d79c00
}
@keyframes f{50%{transform:translateY(-8px)}}



/* WHY SECTION */
.ads-why {
    padding: 100px 0;
    background: #fff;
}

.ads-section-header {
    margin-bottom: 60px;
}

.ads-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fdc733;
    background: rgba(253, 199, 51, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: adsFloatBadge 3s ease-in-out infinite;
}

@keyframes adsFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ads-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.15;
    margin-bottom: 18px;
}

.ads-section-header p {
    font-size: 18px;
    color: #5b6780;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.ads-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.ads-cap-card {
    background: #fefce8;
    border: 1px solid rgba(253, 199, 51, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

.ads-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ads-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.ads-cap-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.ads-cap-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* FEATURES  */
.ads-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fefce8;
}

.ads-features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(253, 199, 51, 0.15);
    border-radius: 50%;
    filter: blur(90px);
    top: -100px;
    left: -80px;
    z-index: 0;
}

.ads-features::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(253, 199, 51, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
}

.ads-features .container {
    position: relative;
    z-index: 2;
}

.ads-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ads-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 28px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ads-feature-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.85;
}

.ads-feature-card:nth-child(1)::before { background: #fdc733; }
.ads-feature-card:nth-child(2)::before { background: #fa494a; }
.ads-feature-card:nth-child(3)::before { background: #15aaff; }
.ads-feature-card:nth-child(4)::before { background: #25D366; }
.ads-feature-card:nth-child(5)::before { background: #fdc733; }
.ads-feature-card:nth-child(6)::before { background: #fa494a; }

.ads-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ads-feature-card:hover::before {
    transform: scale(1.5);
}

.ads-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: 0.4s;
}

.ads-feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.ads-feature-card p {
    font-size: 15px;
    color: #5b6780;
    line-height: 1.7;
}


/* HOW IT WORKS  */
.ads-how {
    padding: 100px 0;
    background: #fff;
}

.ads-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.ads-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.ads-step-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.ads-step:nth-child(1) .ads-step-num {
    background: linear-gradient(135deg, #fdc733, #e5b200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ads-step:nth-child(3) .ads-step-num {
    background: linear-gradient(135deg, #fa494a, #d93c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ads-step:nth-child(5) .ads-step-num {
    background: linear-gradient(135deg, #25D366, #1ea855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ads-step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.ads-step-content p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.7;
}

.ads-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fdc733, #e5b200);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


/* USE CASES */
.ads-usecases {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ads-usecases::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(253, 199, 51, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    top: 50px;
    right: -60px;
    z-index: 0;
}

.ads-usecases .container {
    position: relative;
    z-index: 2;
}

.ads-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ads-usecase-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 24px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ads-usecase-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -90px;
    left: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.8;
}

.ads-usecase-card:nth-child(1)::before { background: #fdc733; }
.ads-usecase-card:nth-child(2)::before { background: #15aaff; }
.ads-usecase-card:nth-child(3)::before { background: #fa494a; }
.ads-usecase-card:nth-child(4)::before { background: #25D366; }

.ads-usecase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ads-usecase-card:hover::before {
    transform: scale(1.6);
}

.ads-usecase-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.ads-usecase-card:nth-child(1) .ads-usecase-icon {
    background: rgba(253, 199, 51, 0.1);
    color: #d4a500;
}

.ads-usecase-card:nth-child(2) .ads-usecase-icon {
    background: rgba(21, 170, 255, 0.1);
    color: #15aaff;
}

.ads-usecase-card:nth-child(3) .ads-usecase-icon {
    background: rgba(250, 73, 74, 0.1);
    color: #fa494a;
}

.ads-usecase-card:nth-child(4) .ads-usecase-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.ads-usecase-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.ads-usecase-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* CTA  */
.ads-cta {
    padding: 100px 0;
    background: #fff;
}

.ads-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1a1508 0%, #2d2510 50%, #3d3218 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.ads-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 199, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ads-cta-content {
    position: relative;
    z-index: 1;
}

.ads-cta-content .ads-mini-badge {
    background: rgba(253, 199, 51, 0.2);
    color: #fde68a;
}

.ads-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ads-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.ads-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ads-cta-visual {
    position: relative;
    z-index: 1;
}

.ads-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.ads-cta-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ads-dot-green {
    width: 10px;
    height: 10px;
    background: #fdc733;
    border-radius: 50%;
    animation: adsPulse 2s infinite;
}

.ads-cta-card-top span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ads-cta-metrics {
    display: flex;
    gap: 32px;
}

.ads-cta-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ads-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.ads-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .ads-hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

    .ads-hero-visual {
        display: none;
    }

    .ads-hero-content {
        text-align: center;
    }

    .ads-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .ads-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ads-hero-actions {
        justify-content: center;
    }

    .ads-hero-stats {
        justify-content: center;
    }

    .ads-capabilities {
        grid-template-columns: 1fr;
    }

    .ads-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ads-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ads-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .ads-why {
        padding: 70px 0;
    }

    .ads-features {
        padding: 70px 0;
    }

    .ads-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .ads-hero-inner {
        padding: 100px 20px 40px;
    }

    .ads-hero-content h1 {
        font-size: 30px;
    }

    .ads-hero-desc {
        font-size: 15px;
    }

    .ads-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ads-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .ads-features-grid {
        grid-template-columns: 1fr;
    }

    .ads-usecase-grid {
        grid-template-columns: 1fr;
    }

    .ads-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .ads-step-line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .ads-step {
        padding: 0 12px;
    }

    .ads-cta-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .ads-why {
        padding: 50px 0;
    }

    .ads-features {
        padding: 50px 0;
    }

    .ads-section-header h2 {
        font-size: 26px;
    }

    .ads-section-header p {
        font-size: 15px;
    }

    .ads-cta-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .ads-feature-card {
        padding: 24px;
    }

    .ads-usecase-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ads-hero-inner {
        padding: 90px 16px 32px;
    }

    .ads-hero-content h1 {
        font-size: 26px;
    }

    .ads-hero-desc {
        font-size: 14px;
    }

    .ads-hero-stats {
        gap: 12px;
    }

    .ads-stat-num {
        font-size: 20px;
    }

    .ads-stat-label {
        font-size: 11px;
    }

    .ads-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .ads-why {
        padding: 40px 0;
    }

    .ads-features {
        padding: 40px 0;
    }

    .ads-section-header h2 {
        font-size: 22px;
    }

    .ads-section-header p {
        font-size: 14px;
    }

    .ads-step-num {
        font-size: 36px;
    }

    .ads-cta-wrapper {
        padding: 24px 16px;
    }

    .ads-capabilities {
        gap: 16px;
    }

    .ads-features-grid {
        gap: 16px;
    }

    .ads-usecase-grid {
        gap: 16px;
    }
}