
  
 
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --yellow: #f3ce34;
            --yellow-dark: #d4b52e;
            --bg: #0d0d0d;
            --card-bg: #141414;
            --card-bg-2: #1a1a1a;
            --text: #ffffff;
            --text-muted: rgba(255,255,255,0.55);
            --text-dim: rgba(255,255,255,0.35);
            --border: rgba(255,255,255,0.07);
            --border-subtle: rgba(255,255,255,0.06);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        section{
            background: #151515;
        }

        /* ===================== HERO ===================== */
        .hero {
            width: 100%;
               padding: 190px 80px 270px;
            position: relative;
            text-align: center;
            overflow: hidden;
            min-height: 600px;
            display: flex;
    justify-content: center;
    background:#151515;
        }

        /* Concentric circles — centered behind hero content */
        .concentric-circles {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -45%);
            width: 1100px;
            height: 1100px;
            pointer-events: none;
            z-index: 0;
        }

        .concentric-circles circle {
            fill: none;
            stroke: #1e1e1e;
            stroke-width: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* ---- Social Icons ---- */
        /* Each icon is a dark circle with a platform logo, scattered around hero */
        .social-icon {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* TikTok — far left mid-height */
        .icon-tiktok {
            left: 150px;
            top: 50%;
            transform: translateY(-10%);
            width: 56px;
            height: 56px;
        }

        /* Instagram — center-left, near badge */
        .icon-instagram {
            left: calc(50% - 160px);
            top: 228px;
            width: 30px;
            height: 30px;
        }
.social-icon.icon-instagram.linkedin {
    left: calc(50% - 30px);
    top: 245px;
}
        /* Facebook — center-right, above badge */
        .icon-facebook {
           left: calc(50% + 120px);
            top: 100px;
            width: 36px;
            height: 36px;
        }

        /* YouTube — far right, mid-height */
        .icon-youtube {
            right: 156px;
            top: 46%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
        }

        /* Dark circle container for each icon */
        .social-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ---- Badge ---- */
        .hero-badge {
            display: inline-block;
            padding: 5px 20px;
            border: 1px solid var(--yellow);
            border-radius: 35px;
            font-size: 10px;
            color: var(--yellow);
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 32px;
            text-transform: uppercase;
        }

        /* ---- Headline ---- */
        /* Image shows: "Don't Just SPEND" / "Make Every Click Count"
           - "Don't Just" and "Make Every Click" = light weight white
           - "SPEND" = heavy bold white
           - "Count" = heavy bold yellow
           Font size is very large ~90–95px */
        .hero-title {
            font-size: 90px;
            font-weight: 400;
            line-height: 1.06;
            margin-bottom: 22px;
            letter-spacing: -2.5px;
            font-family: 'Outfit', sans-serif;
        }

        .hero-title .hero-bold   { font-weight: 800; color: #ffffff; }
        .hero-title .hero-yellow { font-weight: 800; color: var(--yellow); }

        /* ---- Subtitle ---- */
        .hero-subtitle {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.75;
            max-width: 680px;
            margin: 0 auto 44px;
        }
.dollar-hero {
    animation: moveUpAndDown 2s ease-in-out infinite;
}

@keyframes moveUpAndDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.section-container{
    max-width: 1920px;
    margin: 0 auto;

}
        /* ---- CTA buttons ---- */
        .hero-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            align-items: center;
            flex-wrap:wrap;
        }

        /* Yellow filled button with arrow icon */
        .btn-primary {
            padding: 14px 28px;
            border: none;
            border-radius: 25px;
            background: var(--yellow);
            color: #151515;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.25s;
            letter-spacing: 0.1px;
        }

        .btn-primary:hover { background: var(--yellow-dark); }

        /* Arrow badge inside primary button */
        .btn-arrow {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Ghost border button */
        .btn-secondary {
            padding: 14px 28px;
            border: 0.75px solid rgba(160,160,160,0.4);
            border-radius: 25px;
            background: transparent;
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: border-color 0.25s;
        }

        .btn-secondary:hover { border-color: var(--yellow); color: #fff; }

        /* ---- Dollar circle — bottom-right of hero ---- */
        /* In the image it's a large solid yellow circle with a bold black $ sign,
           positioned bottom-right, partially outside the hero */
        .dollar-hero {
            position: absolute;
            right: 60px;
            bottom: 80px;
            width: 260px;
            height: 260px;
            z-index: 3;
        }

        /* ===================== PROBLEM SECTION ===================== */
        .problem-section {
            width: 100%;
            padding: 100px 180px 120px;
        }

        .section-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2.5px;
            color: var(--yellow);
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .problem-title {
            font-size: 68px;
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 28px;
            max-width: 700px;
        }

        .problem-desc {
            font-size: 17px;
            font-weight: 300;
            line-height: 1.55;
            color: var(--text-muted);
            max-width: 500px;
            margin-bottom: 80px;
        }

        .problem-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .problem-card {
            background: var(--card-bg);
            border: 0.667px solid var(--border);
            border-radius: 18px;
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
        }

        .problem-card-num {
            position: absolute;
            top: 10px;
            right: 24px;
            font-size: 60px;
            font-weight: 800;
            color: rgba(255,255,255,0.035);
            letter-spacing: -2px;
            line-height: 1;
            user-select: none;
        }

        .problem-card-icon {
            width: 44px;
            height: 44px;
            background: rgba(243, 206, 52, 0.08);
            border: 0.667px solid rgba(243, 206, 52, 0.18);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .problem-card-title {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .problem-card-desc {
            font-size: 14.5px;
            font-weight: 300;
            line-height: 1.6;
            color: var(--text-muted);
        }

        /* ===================== SERVICES SECTION ===================== */
        .services-section {
            width: 100%;
            padding: 100px 180px;
            background:#151515;
        }

        .section-label-sm {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 2.5px;
            color: var(--text-dim);
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 24px;
        }

        .section-title-center {
            font-size: 66px;
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -1.5px;
            text-align: center;
            margin-bottom: 18px;
        }

        .section-title-center .accent {
            color: var(--yellow);
        }

        .section-desc-center {
            font-size: 17px;
            font-weight: 300;
            line-height: 1.5;
            color: var(--text-muted);
            text-align: center;
            max-width: 520px;
            margin: 0 auto 70px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .service-card {
            background: var(--card-bg-2);
            border: 0.667px solid var(--border-subtle);
            border-radius: 20px;
            padding: 38px 36px;
            transition: border-color 0.25s;
        }

        .service-card:hover {
            border-color: rgba(243,206,52,0.25);
                background: #202020 !important;
        }
.problem-card:hover .problem-card-num {
    color: #f3ce34;
}
.dollar-hero.problem-img {
    top: 20%;
}
        .service-card.featured {
            border: 1.5px solid var(--yellow);
        }

        .service-card-icon {
            width: 62px;
            height: 62px;
            background: rgba(243, 206, 52, 0.08);
            border: 0.667px solid rgba(243, 206, 52, 0.18);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .service-card-title {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }

        .service-card-desc {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.5;
            color: var(--text-muted);
            margin-bottom: 22px;
        }

        .service-card-list {
            list-style: none;
            margin-bottom: 28px;
        }

        .service-card-list li {
            font-size: 13.5px;
            font-weight: 300;
            line-height: 1.5;
            color: var(--text-muted);
            margin-bottom: 9px;
            padding-left: 22px;
            position: relative;
        }

        .service-card-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 8px;
            height: 8px;
            background: rgba(243,206,52,0.55);
            border-radius: 50%;
        }

        .service-card-link {
            color: var(--yellow);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.2px;
            transition: opacity 0.2s;
        }

        .service-card-link:hover { opacity: 0.75; }

        /* ===================== FUNNEL SECTION ===================== */
        .funnel-section {
            width: 100%;
           
            padding: 100px 180px;
        }

        .funnel-inner {
            display: flex;
            align-items: center;
            justify-content:center;
            gap: 80px;
        }

    .funnel-inner {
    display: flex;
    align-items: center;
    gap: 90px;
}
 
/* ============================================================
   FUNNEL VISUAL (LEFT)
   Each layer is a trapezoid: dark background, gold border,
   text centered, % label floated outside to the right.
   Layers get progressively narrower top → bottom.
   ============================================================ */
.funnel-visual {
    flex: 0 0 420px;
}
 
.funnel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
 
/* ---- Base layer styles ---- */
/* Each .fl row is a relative container.
   The visible trapezoid is ::before (dark + gold border clip-pathed).
   The text sits on top at z-index 1.
   The % label is absolute, outside the clip-path. */
.fl {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* The actual visible trapezoid shape */
.fl-shape {
    position: absolute;
    inset: 0;
       border-width: 1.263px;
    border: rgba(243, 206, 52, 0.40);
    clip-path: polygon(4% 0%, 96% 0%, 92% 100%, 8% 100%);
}
 
/* Text block — centered inside the trapezoid */
.fl-text {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
    /* Indent slightly to stay within the angled sides */
    padding: 0 60px;
}
 
.fl-name {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #d4a90e;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}
 
.fl-sub {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    letter-spacing: 0.3px;
}
 
/* % label — sits outside the trapezoid, right side */
.fl-pct {
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(243, 206, 52, 0.80);
font-family: Outfit;
font-size: 12.625px;
font-style: normal;
font-weight: 700;
line-height: normal;
    white-space: nowrap;
    z-index: 3;
    letter-spacing: 0.5px;
}
 
/* ---- Layer-specific widths ----
   Layer 1 (AWARENESS)    = widest  = 100%
   Layer 2 (INTEREST)     = 86%
   Layer 3 (CONSIDERATION)= 72%
   Layer 4 (CONVERSION)   = 58%
   Each shrinks by ~14% so the funnel tapers clearly.
   Centered via margin: 0 auto. */
.fl-1 { width: 100%; }
.fl-2 { width: 86%; }
.fl-3 { width: 72%; }
.fl-4 { width: 58%; }
 
/* Slightly different gold tones per layer — brighter at top, darker at bottom */
.fl-1 .fl-shape,.fl-2 .fl-shape,.fl-3 .fl-shape {    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    background: linear-gradient(180deg, rgba(243, 206, 52, 0.22) 0%, rgba(243, 206, 52, 0.04) 100%);
    }
.fl-4 .fl-shape {background: linear-gradient(180deg, rgba(243, 206, 52, 0.50) 0%, rgba(243, 206, 52, 0.18) 100%);
border-width: 1.263px;
border: rgba(243, 206, 52, 0.55); }
 
/* ---- Dots connector between funnel bottom and revenue box ---- */
.fl-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 2px 0;
}
 
.fl-connector span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(180, 140, 20, 0.5);
    display: block;
}
 
/* ---- Revenue box at bottom ---- */
/* Dark background, gold border, no clip-path (rectangular) */
.fl-revenue {
    width: 56%;
    background: #0d0d0d;
   background: rgba(243, 206, 52, 0.10);
border-width: 1.894px;
border: rgba(243, 206, 52, 0.40);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    margin-top: 2px;
}
 
.fl-rev-amount {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #d4a90e;
    letter-spacing: -1px;
    line-height: 1.1;
}
 
.fl-rev-label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}
 
.fl-rev-roas {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #d4a90e;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
 
/* ============================================================
   FUNNEL INFO (RIGHT)
   ============================================================ */
/* .funnel-info {
    flex: 1;
}
  */
.funnel-section-label {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    margin-bottom: 20px;
}
 
.funnel-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    color: #ffffff;
}
 
.funnel-title .accent {
    color: #f3ce34;
}
 
.funnel-desc {
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.48);
    max-width: 380px;
    margin-bottom: 30px;
}
 
/* Stats: large yellow number left, description right */
.funnel-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
 
.funnel-stat {
      display: flex;
    gap: 20px;
    align-items: flex-start;
    border-radius: 14px;
    border: 0.667px solid rgba(255, 255, 255, 0.07);
    background: #151515;
    padding: 18px 22px;
}
 
.stat-number {
   color: #F3CE34;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 32px; 
    line-height: 1;
    min-width: 88px;
    letter-spacing: -1.5px;
    flex-shrink: 0;
}
 
.stat-body {
    padding-top: 6px;
}
 
.stat-body p {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.48);
    max-width: 260px;
}
 
/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .funnel-section { padding: 80px 80px; }
    .funnel-inner { gap: 60px; }
    .funnel-visual { flex: 0 0 360px; }
    .funnel-title { font-size: 40px; }
}
 
@media (max-width: 820px) {
    .funnel-section { padding: 60px 32px; }
    .funnel-inner { flex-direction: column; align-items: flex-start; gap: 60px; }
    .funnel-visual { flex: none; width: 100%; }
    .funnel-title { font-size: 36px; }
}
       

        /* ===================== CTA SECTION ===================== */
      /* ===========================
   CTA SECTION & BANNER
   =========================== */

.cta-section {
    width: 100%;
}

.cta-wrapper {
    position: relative;
    margin-top: 0px !important;
    background: #151515 !important;
    padding:124px 0px !important;
}
.cta-section {
    text-align: center;
    position: relative;
    z-index: 5;
    background: rgb(243, 206, 52);
    padding: 80px 105px;
    margin: 100px 0px;
    animation: 1s ease-out 0s 1 normal none running fadeInUp;
}
.cta-section h2 {
    color: #151515;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-section p {
    color: #151515;
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn-dark {
    background: #151515;
    color: #fff;
    border-radius: 25px;
    padding: 14px 40px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Yellow Full-Width Banner Variant */
.cta-banner {
    width: 100%;
    background: var(--yellow);
    color: #000;
    text-align: center;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-left-image {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%) !important;
    animation: moveUpAndDown 2s ease-in-out infinite;
}

@keyframes moveUpAndDown {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px); 
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
.service-card:hover h4, .service-card:hover p, .service-card.highlight h4, .service-card.highlight p{
    color: unset;
}
/* --- CTA Responsive States --- */

@media (max-width: 1024px) {
    .cta-wrapper {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px !important;
    }
    
    .cta-banner h2 {
        font-size: 32px;
    }
    .dollar-hero.problem-img {
    top: 80px;
    right: -70px;
}
}

@media (max-width: 690px) {
    .cta-section {
        padding: 60px 20px !important;
    }
     .dollar-hero.problem-img{
        display: none;
     }
     .dollar-hero{
    width: 160px;
    height: 160px;
}
.icon-youtube,.icon-tiktok {
    display: none;}
        /*.dollar-hero {*/
        /*position: absolute;*/
        /*right: 0px;*/
        /*bottom: -100px;}*/
              .dollar-hero{
                    width: 200px;
        height: 200px;
        animation: unset !important;
        }
}

        /* ===================== RESPONSIVE ===================== */
        
        @media (max-width: 1280px) {
            header, .hero, .problem-section, .services-section,
            .funnel-section, .cta-inner, footer { padding-left: 80px; padding-right: 80px; }
            .hero-title { font-size: 72px; }
            .problem-title { font-size: 52px; }
            .section-title-center { font-size: 52px; }
            .funnel-title { font-size: 42px; }
            .dollar-hero {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 260px;
    height: 260px;
    z-index: 3;
}
.dollar-hero img{
    width:100%;
}
.top-left-image{
    top:0px;
}
.top-left-image img{
    width:100%;
}
        }

        @media (max-width: 1024px) {
    .problem-cards {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
    }
            .funnel-inner { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-wrapper { display: none; }
        }

        @media (max-width: 768px) {
              .problem-cards {
        grid-template-columns: 1fr;
              }
                  .services-grid {
        grid-template-columns: 1fr;
    }
    
            header, .hero, .problem-section, .services-section,
            .funnel-section, .cta-inner, footer { padding-left: 32px; padding-right: 32px; }
            .hero-title { font-size: 48px; letter-spacing: -1.5px; }
            .problem-title { font-size: 38px; }
            .section-title-center { font-size: 38px; }
            .funnel-title { font-size: 34px; }
            .cta-title { font-size: 36px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; }
        }
  
@media (max-width: 690px) {
       .dollar-hero{
        width: 200px !important;
        height: 200px !important;
        animation: unset !important;
                bottom: -50px;
        }
}
@media (max-width: 500px) {
       .dollar-hero{
       display:none;
        }
}

