<style>
/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
}

/* =========================
   HEADER
========================= */


.top-bar {
    width: 100%;
    background: #0b1f3a;
    padding: 40px 20px;
    text-align: center;
}

.top-bar h1 {
    color: #fff !important;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
}

.main-header{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    padding:0;
    border-radius:0;
    box-shadow:none;
    background:none;
}

.hero-content{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 80px;
    text-align:left;
}

.hero-section{
    padding:120px 80px;
    text-align:left;
}

.hero-buttons{
    justify-content:flex-start;
}

.hero-stats{
    justify-content:flex-start;
}
/* =========================
   SECTIONS (GLASS CARDS)
========================= */
section {
    margin: 30px auto;
    padding: 25px;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* =========================
   HEADINGS
========================= */
h2 {
    color: #00f5ff;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

h3 {
    color: #a78bfa;
    margin: 15px 0;
}

/* =========================
   PARAGRAPH
========================= */
p {
    margin-bottom: 10px;
    color: #e2e8f0;
}

/* =========================
   LISTS
========================= */
ul {
    margin-left: 20px;
    margin-top: 10px;
}

ul li {
    margin: 8px 0;
    color: #cbd5e1;
}

/* =========================
   TABLES (MODERN GLASS STYLE)
========================= */
table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

table th {
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
    color: white;
    padding: 12px;
}

table td {
    padding: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

table tr:hover td {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================
   BAR CHART STYLE
========================= */
pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    color: #22c55e;
    font-weight: bold;
    overflow-x: auto;
}

/* =========================
   BUTTON STYLE (for CTA later)
========================= */
button {
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 18px;
    }

    table {
        font-size: 0.85rem;
    }
}
</style>


/* =========================
   MAIN HEADER
========================= */
.main-header {
    width: 100%;
    position: relative;
}

/* =========================
   TOP BLUE BAR
========================= */
.top-bar {
    width: 100%;
    background: #0b1f3a; /* dark blue */
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.top-bar h1 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* =========================
   TICKER WRAPPER
========================= */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #111827; /* slightly darker strip */
    padding: 12px 0;
    border-bottom: 2px solid #1f2937;
}

/* =========================
   MOVING TEXT (NEWS STYLE)
========================= */
.ticker {
    display: inline-block;
    white-space: nowrap;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    animation: scrollTicker 18s linear infinite;
}

/* Animation */
@keyframes scrollTicker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



<style>
/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #000000;
    line-height: 1.6;
    padding: 20px;
}

/* =========================
   HEADER
========================= */
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   SECTIONS (GLASS CARDS LIGHT)
========================= */
section {
    margin: 30px auto;
    padding: 25px;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* =========================
   HEADINGS (BLACK ONLY)
========================= */
h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

h3 {
    color: #111111;
    margin: 15px 0;
}

/* =========================
   PARAGRAPH (BLACK ONLY)
========================= */
p {
    margin-bottom: 10px;
    color: #000000;
}

/* =========================
   LISTS
========================= */
ul li {
    margin: 8px 0;
    color: #000000;
}

/* =========================
   TABLES (LIGHT CLEAN STYLE)
========================= */
table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

table th {
    background: linear-gradient(90deg, #e5e7eb, #d1d5db);
    color: #000000;
    padding: 12px;
}

table td {
    padding: 12px;
    text-align: center;
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid #e5e7eb;
}

table tr:hover td {
    background: #f3f4f6;
}

/* =========================
   BAR CHART (BLACK TEXT)
========================= */
pre {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 12px;
    color: #000000;
    font-weight: bold;
}

/* =========================
   BUTTON
========================= */
button {
    background: linear-gradient(90deg, #000000, #333333);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 18px;
    }

    table {
        font-size: 0.85rem;
    }
}


.comparison-card,
.performance-card{
background:#fff;
border-radius:20px;
padding:30px;
margin-top:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.comparison-table{
width:100%;
border-collapse:collapse;
}

.comparison-table th{
background:#0b1f3a;
color:#fff;
padding:18px;
}

.comparison-table td{
padding:18px;
text-align:center;
border-bottom:1px solid #eee;
}

.table-row{
opacity:0;
transform:translateY(40px);
}

.progress-item{
margin:35px 0;
}

.progress-header{
display:flex;
justify-content:space-between;
margin-bottom:10px;
font-weight:600;
}

.progress-bar{
height:18px;
background:#edf2f7;
border-radius:100px;
overflow:hidden;
}

.progress-fill{
height:100%;
width:0;
border-radius:100px;
transition:2s ease;
}

.seo-fill{
background:#2563eb;
}

.ppc-fill{
background:#f97316;
}

.social-fill{
background:#8b5cf6;
}

.content-fill{
background:#10b981;
}

.insights-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:50px;
}

.insight-card{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.insight-card:hover{
transform:translateY(-10px);
}

.animation-box{
height:180px;
background:#f8fafc;
border-radius:15px;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:20px;
font-weight:700;
}

.insight-card h4{
margin-bottom:15px;
color:#0b1f3a;
}


/* =========================
   ROI SECTION
========================= */

.roi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:40px;
}

.roi-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    opacity:0;
    transform:translateY(40px);
}

.roi-card:hover{
    transform:translateY(-10px);
}

.roi-card h3{
    color:#0b1f3a;
    margin-bottom:15px;
}

.investment{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    font-size:.85rem;
    margin-bottom:20px;
    font-weight:600;
}

.low{
    background:#dcfce7;
    color:#166534;
}

.medium{
    background:#fef3c7;
    color:#92400e;
}

.high{
    background:#fee2e2;
    color:#991b1b;
}

.roi-value{
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
}

.roi-progress{
    height:14px;
    background:#edf2f7;
    border-radius:50px;
    overflow:hidden;
}

.roi-fill{
    width:0;
    height:100%;
    transition:2s ease;
}

.seo-roi{
    background:#2563eb;
}

.ppc-roi{
    background:#f97316;
}

.social-roi{
    background:#8b5cf6;
}

.content-roi{
    background:#10b981;
}

.roi-insight-card{
    margin-top:40px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.roi-insight-card h3{
    margin-bottom:20px;
}

.insight-item{
    padding:18px;
    border-radius:15px;
    margin-bottom:15px;
}

.winner{
    background:#ecfdf5;
    border-left:5px solid #10b981;
}

.warning{
    background:#fff7ed;
    border-left:5px solid #f97316;
}

/* =========================
   STRATEGY SECTION
========================= */

.strategy-intro{
    max-width:800px;
    margin:20px auto 40px;
    text-align:center;
    font-size:1.1rem;
}

.strategy-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.strategy-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    transform:translateY(50px);

    transition:.5s ease;
    position:relative;
    overflow:hidden;
}

.strategy-card:hover{
    transform:translateY(-10px);
}

.strategy-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

.seo-card::before{
    background:#2563eb;
}

.ppc-card::before{
    background:#f97316;
}

.social-card::before{
    background:#8b5cf6;
}

.content-card::before{
    background:#10b981;
}

.strategy-icon{
    width:70px;
    height:70px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;

    background:#f8fafc;
    margin-bottom:20px;
}

.strategy-card h3{
    margin-bottom:10px;
}

.strategy-tag{
    display:inline-block;

    padding:8px 14px;

    border-radius:50px;

    background:#f1f5f9;

    font-size:.85rem;

    margin-bottom:20px;

    font-weight:600;
}

.strategy-card p{
    margin-bottom:20px;
}

.strategy-card ul{
    padding-left:18px;
}

.strategy-card li{
    margin-bottom:12px;
}

.hero-section{
background:linear-gradient(
135deg,
#f8fafc,
#ffffff
);

```
padding:90px 30px;
text-align:center;
```

}

.hero-content{
max-width:900px;
margin:auto;
}

.hero-badge{
display:inline-block;
background:#e0e7ff;
color:#1e3a8a;
padding:10px 18px;
border-radius:50px;
font-size:.9rem;
font-weight:600;
margin-bottom:25px;
}

.hero-content h2{
font-size:3.4rem;
line-height:1.1;
color:#0b1f3a;
margin-bottom:25px;
}

.hero-content p{
max-width:700px;
margin:auto;
font-size:1.15rem;
line-height:1.8;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:60px;
}

.primary-btn{
background:#0b1f3a;
color:#fff;
text-decoration:none;
padding:15px 28px;
border-radius:12px;
font-weight:600;
}

.secondary-btn{
background:#fff;
color:#0b1f3a;
border:2px solid #0b1f3a;
text-decoration:none;
padding:15px 28px;
border-radius:12px;
font-weight:600;
}

.hero-stats{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
}

.stat-item{
display:flex;
flex-direction:column;
}

.stat-number{
font-size:2.2rem;
font-weight:700;
color:#0b1f3a;
}

.stat-label{
color:#64748b;
}

.full-width-wrapper{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}


.failure-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.failure-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
opacity:0;
transform:translateY(40px);
transition:.6s;
}

.failure-icon{
font-size:2.5rem;
margin-bottom:15px;
}

.failure-result{
margin-top:40px;
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.problem{
background:#fee2e2;
padding:15px 25px;
border-radius:12px;
font-weight:600;
}

.arrow{
font-size:2rem;
font-weight:bold;
}

.comparison-modern{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.comparison-column{
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
background:#fff;
}

.other-agencies{
border-top:5px solid #ef4444;
}

.our-system{
border-top:5px solid #10b981;
position:relative;
}

.winner-badge{
position:absolute;
top:-15px;
right:20px;
background:#10b981;
color:#fff;
padding:8px 15px;
border-radius:50px;
font-size:.8rem;
font-weight:600;
}

.compare-item{
padding:15px;
margin-top:12px;
background:#f8fafc;
border-radius:12px;
font-weight:500;
}

.section-intro{
max-width:800px;
margin:15px auto 30px;
text-align:center;
font-size:1.05rem;
}



.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.benefit-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
opacity:0;
transform:translateY(40px);
transition:.6s;
}

.benefit-icon{
font-size:2.5rem;
margin-bottom:15px;
}

.roi-showdown{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
margin-top:60px;
flex-wrap:wrap;
}

.roi-box{
padding:35px;
border-radius:25px;
min-width:300px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.average{
background:#fff7ed;
border-top:5px solid #f97316;
}

.premium{
background:#ecfdf5;
border-top:5px solid #10b981;
}

.roi-number{
font-size:2rem;
font-weight:700;
margin:15px 0;
}

.vs-circle{
width:80px;
height:80px;
background:#0b1f3a;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
}

.funnel-container{
max-width:700px;
margin:50px auto;
}

.funnel-step{
padding:30px;
border-radius:20px;
background:#fff;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
opacity:0;
transform:translateY(40px);
transition:.6s;
}

.funnel-step span{
display:inline-flex;
width:50px;
height:50px;
border-radius:50%;
align-items:center;
justify-content:center;
background:#0b1f3a;
color:#fff;
font-weight:700;
margin-bottom:15px;
}

.funnel-arrow{
text-align:center;
font-size:2rem;
margin:15px 0;
font-weight:700;
color:#0b1f3a;
}

.formula-card{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-top:50px;
}

.formula-item{
padding:25px;
border-radius:20px;
min-width:180px;
text-align:center;
font-weight:700;
box-shadow:0 15px 40px rgba(0,0,0,.08);
background:#fff;
}

.formula-item small{
display:block;
margin-top:8px;
font-weight:500;
}

.formula-plus,
.formula-equals{
font-size:2rem;
font-weight:700;
}

.seo{
border-top:5px solid #2563eb;
}

.content{
border-top:5px solid #10b981;
}

.ppc{
border-top:5px solid #f97316;
}

.roi{
border-top:5px solid #8b5cf6;
}

.summary-message{
max-width:800px;
margin:40px auto 0;
text-align:center;
font-size:1.1rem;
line-height:1.8;
}

.funnel-flow{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-top:50px;
}

.funnel-step{
width:220px;
text-align:center;
padding:25px;
border-radius:20px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);

opacity:0;
transform:translateY(40px);
}

.funnel-step span{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:15px;

border-radius:50%;
background:#0b1f3a;
color:#fff;
font-weight:700;
}

.flow-arrow{
font-size:2rem;
font-weight:700;
color:#2563eb;

opacity:0;
transform:scale(.5);
}

.cta-section{
text-align:center;
padding:60px 30px;
margin-top:40px;
}

.cta-section h2{
font-size:3rem;
margin-bottom:20px;
color:#0b1f3a;
}

.cta-text{
max-width:800px;
margin:0 auto 35px;
font-size:1.1rem;
line-height:1.8;
}

.cta-benefits{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin:35px 0;
}

.cta-benefits span{
font-weight:600;
padding:12px 18px;
border-bottom:3px solid #2563eb;
}

.cta-highlight{
font-size:1.5rem;
max-width:900px;
margin:40px auto;
line-height:1.6;
}

.cta-button{
display:inline-block;
padding:18px 35px;
background:#0b1f3a;
color:#ffffff;
text-decoration:none;
border-radius:12px;
font-weight:700;
transition:.3s;
}

.cta-button:hover{
transform:translateY(-4px);
}


</style>