:root {
    --bg-main: #020205; /* Deepest black for background */
    --card-bg: #090e17; /* Dark blue-gray for cards */
    --card-border: rgba(255, 255, 255, 0.05);
    --card-bg-gradient: linear-gradient(160deg, #0f172a 0%, #020617 100%);
    --card-bg-light: #111823;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8; /* cool gray */
    
    --glow-blue: rgba(59, 130, 246, 0.3);
    --glow-green: rgba(16, 185, 129, 0.3);
    --glow-pink: rgba(236, 72, 153, 0.3);
    --glow-orange: rgba(245, 158, 11, 0.3);
    --glow-purple: rgba(139, 92, 246, 0.3);
    
    --pill-bg: rgba(30, 41, 59, 0.6);
    --pill-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.tracking-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(350px, auto);
    gap: 24px;
    margin-bottom: 40px;
}

/* Cards */
.card {
    background: var(--card-bg-gradient);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

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

.card-wide { grid-column: span 3; }
.card-small { grid-column: span 2; }

/* Visual Area at top of cards */
.visual-area {
    flex-grow: 1;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Card Content (Text) */
.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Network Visual (Card 1) */
.network-visual {
    position: relative;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
}
.network-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.icon-node {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.icon-node img, .icon-node svg {
    width: 24px;
    height: 24px;
}

.center-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.center-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Glow Effects */
.glow-blue::before { content: ''; position: absolute; width: 100%; height: 100%; box-shadow: 0 0 30px 10px var(--glow-blue); border-radius: inherit; z-index: -1; }
.glow-green::before { content: ''; position: absolute; width: 100%; height: 100%; box-shadow: 0 0 30px 10px var(--glow-green); border-radius: inherit; z-index: -1; }
.glow-pink::before { content: ''; position: absolute; width: 100%; height: 100%; box-shadow: 0 0 30px 10px var(--glow-pink); border-radius: inherit; z-index: -1; }
.glow-orange::before { content: ''; position: absolute; width: 100%; height: 100%; box-shadow: 0 0 30px 10px var(--glow-orange); border-radius: inherit; z-index: -1; }
.glow-purple::before { content: ''; position: absolute; width: 100%; height: 100%; box-shadow: 0 0 30px 10px var(--glow-purple); border-radius: inherit; z-index: -1; }

/* Floating Elements Visual (Card 2) */
.flex-visual {
    flex-direction: column;
    padding: 30px;
    gap: 15px;
}

.pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 30px;
    font-size: 0.85rem;
    color: #e2e8f0;
    backdrop-filter: blur(4px);
}

.pill-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.floating-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-green {
    top: 20px; left: 20px;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.badge-graph {
    bottom: 20px; right: 20px;
    background: rgba(30, 41, 59, 0.8);
}

/* Stats List (Card 3) */
.stats-list {
    padding: 24px 24px 0 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-stat {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Central Focus Cards (Card 4 & 5) */
.central-focus {
    padding-top: 30px;
    align-items: center;
}

.big-icon-container {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    border-radius: 16px;
}

.outline-box {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
}

.pills-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-grow: 1;
}

/* Specific Card Backgrounds */
.bg-gradient {
    /* Subtle radial gradient for Facebook card */
    background: radial-gradient(circle at top center, rgba(37, 99, 235, 0.15) 0%, var(--card-bg-gradient) 60%);
}

/* Footer Stats */
.footer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -10px;
}

.avatars img:first-child { margin-left: 0; }

.rating-info {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    line-height: 1;
}

.rating-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-wide, .card-small { grid-column: span 2; }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    .header h1 {
        font-size: 2rem;
    }
}

/* Process Section */
.process-section {
    padding: 60px 20px;
    background-color: var(--bg-main);
}

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

.badge-dark {
    background-color: #111827;
    border-color: #374151;
}

.process-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card .card-content {
    padding: 24px 30px;
}

/* Mock Windows Background */
.process-card {
    background: #090e14; /* very dark, identical to design */
}

/* Mock Browser Window */
.mock-window {
    margin: 30px 30px 0 30px;
    height: 180px;
    background: #1e1e1e; /* Chrome dark theme bg */
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mock-header {
    height: 28px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mock-body {
    flex-grow: 1;
    background: #181a1f;
    position: relative;
    padding: 12px;
}

/* Split Pane (Card 1) */
.p-split {
    display: flex;
    gap: 12px;
}

.mock-pane-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-bar-chart {
    background: #21252b;
    border-radius: 6px;
    padding: 12px;
    flex: 1.5;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
}

.mock-bar-chart .bar {
    width: 12px;
    border-radius: 2px 2px 0 0;
    background: #3b82f6;
}
.bar-1 { height: 40%; background: #8b5cf6 !important; }
.bar-2 { height: 70%; background: #3b82f6 !important; }
.bar-3 { height: 50%; background: #64748b !important; }

.mock-box {
    background: #21252b;
    border-radius: 6px;
    flex: 1;
}

.mock-pane-right {
    flex: 1;
    background: #21252b;
    border-radius: 6px;
}

/* Sidebar Layout (Card 2) */
.p-sidebar {
    display: flex;
    gap: 10px;
    padding: 8px;
}

.mock-sidebar {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-menu-item.active {
    background: rgba(255,255,255,0.05);
    color: #e2e8f0;
}

.mock-content {
    flex-grow: 1;
    background: #21252b;
    border-radius: 6px;
    padding: 12px;
}

/* Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mock-status-text {
    font-size: 0.7rem;
    color: #94a3b8;
    align-self: flex-start;
}

.mock-progress-bar {
    width: 80%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.mock-progress-fill {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.mock-spinner {
    animation: spin 2s linear infinite reverse;
    transform-origin: center;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Blank Body (Card 3) */
.blank-body {
    background: linear-gradient(180deg, #1e1e1e 0%, #0f1115 100%);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        display: flex;
        flex-direction: column;
    }
}

/* Dark Hero Section */
.hero-section {
    min-height: 100vh;
    background-color: #0d0d0d; /* Dark backing to match photo */
    display: flex;
    justify-content: center; /* Center the layout to close the gap */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 1 500px; /* Constrain width so it doesn't separate from the image */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: auto;
    margin-top: 40px;
}

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

.stat h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    position: relative;
}

.stat h2::before {
    content: '+';
    font-size: 1.2rem;
    position: absolute;
    left: -15px;
    top: 4px;
}

.stat p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.hero-text {
    margin-top: 40px;
    margin-bottom: auto;
}

.hero-eyebrow {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #f1f5f9;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Floating Icons */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.08); /* glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-icon.delay-1 { animation-delay: 0s; }
.floating-icon.delay-2 { animation-delay: 1.5s; }
.floating-icon.delay-3 { animation-delay: 3s; }
.floating-icon.delay-4 { animation-delay: 4.5s; }

.hero-image {
    flex: 0 1 600px; /* Constrain image width to keep it close to text */
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 15vw;
    background: linear-gradient(to right, #0d0d0d 10%, transparent);
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    left: 0; bottom: 0; right: 0; height: 15vh;
    background: linear-gradient(to top, #0d0d0d 10%, transparent);
    z-index: 1;
}

.hero-image img {
    height: 95vh;
    max-height: 1000px;
    object-fit: contain;
    object-position: bottom;
    filter: grayscale(100%) contrast(1.1);
}

@media (max-width: 1200px) {
    .hero-main-title { font-size: 4rem; }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column; /* Stack vertically on mobile */
        text-align: center;
        padding-top: 40px;
        min-height: auto;
    }
    .hero-content {
        padding: 20px 5%;
        flex: none;
        align-items: center; /* Center content */
    }
    .hero-eyebrow {
        align-self: center; /* Center eyebrow */
    }
    .hero-main-title {
        font-size: 3.5rem; 
        margin-bottom: 20px;
    }
    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .hero-image {
        flex: none;
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
    .hero-image img {
        height: auto;
        width: 90%;
        max-width: 400px;
        object-position: center bottom;
    }
    .floating-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    .floating-icon svg, .floating-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    .floating-icon {
        width: 38px;
        height: 38px;
    }
}

/* Analytics Insight Section */
.insight-section {
    background-color: #111113;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.insight-text {
    flex: 1;
    z-index: 2;
}

.insight-eyebrow {
    color: #eab308;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.insight-heading {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 28px;
}

.insight-description {
    font-size: 1.05rem;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
}

.insight-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 36px;
}

.insight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    transition: gap 0.3s ease;
    margin-bottom: 24px;
}

.insight-cta:hover {
    gap: 14px;
}

.insight-cta-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.insight-cta:hover .insight-cta-arrow {
    transform: translateX(4px);
}

.insight-footer-text {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.insight-footer-arrow {
    font-size: 0.8rem;
    color: #64748b;
}

.insight-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.insight-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Ambient glow behind the traffic light image */
.insight-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

@media (max-width: 992px) {
    .insight-section {
        padding: 70px 20px;
    }
    .insight-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .insight-heading {
        font-size: 3rem;
    }
    .insight-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .insight-cta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .insight-heading {
        font-size: 2.4rem;
    }
    .insight-description {
        font-size: 0.95rem;
    }
}

/* Integrated Marketing Agency Banner */
.integrated-agency-section {
    background-color: #0d6efd;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.agency-container {
    max-width: 900px;
    width: 100%;
}

.agency-heading {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.agency-subheading {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

@media (max-width: 992px) {
    .integrated-agency-section {
        padding: 80px 20px;
    }
    .agency-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .integrated-agency-section {
        padding: 60px 20px;
    }
    .agency-heading {
        font-size: 2.5rem;
    }
    .agency-subheading {
        font-size: 1rem;
    }
}

/* Secondary CTA Section */
.secondary-cta-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    /* Soft blurred purple glow behind text */
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, #0d0d0d 60%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subheading {
    font-size: 1.15rem;
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-schedule {
    background-color: #6366f1; /* purple/indigo */
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 15px;
}

.btn-schedule:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.95rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .cta-heading { font-size: 2.5rem; }
    .cta-subheading { font-size: 1rem; }
}

/* Partners Section */
.partners-section {
    background-color: #f0f7ff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-badge {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.partners-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    align-items: center;
}

.logo-box {
    background: #fff;
    border-radius: 12px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.logo-box.wide {
    width: auto;
    padding: 0 20px;
}

.logo-box.large {
    width: 90px;
    height: 90px;
    margin: -10px 10px; /* Highlights GTM as the center hero per the screenshot */
}

.logo-text {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #fde047;
    color: #1f2937;
    text-align: center;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Value Prop Section */
.value-prop-section {
    background-color: #f4f8fb; /* Extremely soft blue-grey */
    padding: 100px 20px;
    color: #111827;
}

.vp-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px auto;
}

.vp-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    color: #1e293b;
}

.vp-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #334155;
    margin-bottom: 40px;
}

.vp-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.05rem;
}

.check-item svg {
    width: 20px;
    height: 20px;
}

.vp-social-proof {
    background: #e2e8f0;
    border-radius: 40px;
    padding: 8px 24px 8px 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    margin-left: -12px;
}
.avatar-stack img:first-child { margin-left: 0; }

.stars-proof {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

.proof-link {
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 600;
    text-decoration: underline;
}

.vp-cta-button {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    text-decoration: none;
    padding: 16px 24px 16px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.btn-arrow {
    background: #fff;
    color: #1f2937;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vp-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.vp-left h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    color: #0f172a;
}

.vp-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
}
.author-fols {
    font-size: 0.8rem;
    color: #64748b;
}

.author-rating {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

.vp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #cbd5e1;
    padding-top: 30px;
}

.vp-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vp-stat strong {
    font-size: 1.5rem;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 2px;
}

.vp-stat strong span {
    font-size: 1rem;
}

.vp-stat > span {
    font-size: 0.75rem;
    color: #64748b;
}

/* Pinned Card */
.vp-right {
    position: relative;
    padding: 20px;
}

.pinned-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    position: relative;
    border: 5px solid rgba(241, 245, 249, 0.8);
}

.red-pin {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 45px;
    height: 45px;
    filter: drop-shadow(4px 10px 6px rgba(0,0,0,0.3));
    transform: rotate(30deg);
}

.pinned-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pinned-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1e293b;
}

.pinned-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .vp-bottom-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .vp-title { font-size: 2.2rem; }
    .vp-subtitle { font-size: 1.4rem; }
    .vp-left h2 { font-size: 2.2rem; }
    .vp-stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* How We Help Section */
.how-we-help-section {
    background-color: #171717;
    padding: 120px 20px;
    color: #fff;
    display: flex;
    justify-content: center;
}

.hwh-container {
    max-width: 1200px;
    width: 100%;
}

.hwh-header {
    margin-bottom: 80px;
}

.hwh-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hwh-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 700px;
}

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

.hwh-card-title {
    color: #fbbf24;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hwh-card-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 992px) {
    .hwh-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hwh-title {
        font-size: 3.5rem;
    }
}

/* Action Banner Section */
.action-banner-section {
    background-color: #0d6efd;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.action-banner-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.action-banner-title {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.btn-brief {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.btn-brief:hover {
    background-color: #fff;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .action-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Project Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
    color: #fff;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #111;
    border: 1px solid #2d2d2d;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #0df0a3;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

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

/* Pricing Section */
.pricing-section {
    background-color: #0a0a0a;
    padding: 100px 20px;
    color: #fff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-badge {
    background: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.pricing-tabs {
    display: flex;
    background: #1e1e1e;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 50px;
    border: 1px solid #2d2d2d;
}

.tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active {
    background: #6366f1;
    color: #fff;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

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

.price-card {
    background: #111111;
    border: 1px solid #1e293b;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.price-card:hover {
    border-color: #6366f1;
}

.price-card-header {
    padding: 30px 28px 25px;
    border-bottom: 1px solid #1e293b;
}

.card-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.price-amount-text {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.price-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-plan {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-plan:hover {
    background: #4f46e5;
}

.price-features {
    list-style: none;
    padding: 25px 28px 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.price-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='3' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .pricing-title { font-size: 2.5rem; }
}

/* Thrive Together Section */
.thrive-section {
    background-color: #171717;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.thrive-container {
    max-width: 900px;
    width: 100%;
}

.thrive-heading {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0df0a3;
    margin-bottom: 40px;
}

.thrive-content p {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
}

.thrive-content p:last-child {
    margin-bottom: 40px;
}

.thrive-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.thrive-cta svg {
    transition: transform 0.3s ease;
}

.thrive-cta:hover {
    color: #0df0a3;
}

.thrive-cta:hover svg {
    transform: translateX(6px);
    stroke: #0df0a3;
}

@media (max-width: 992px) {
    .thrive-section { padding: 80px 20px; }
    .thrive-heading { font-size: 4rem; }
}

@media (max-width: 576px) {
    .thrive-section { padding: 60px 20px; }
    .thrive-heading { font-size: 3rem; }
    .thrive-content p { font-size: 1.05rem; }
    .thrive-cta { font-size: 1.1rem; }
}

/* Footer Section */
.footer-section {
    background-color: #080808; /* Darkest shade for the absolute bottom */
    color: #94a3b8;
    padding: 30px 20px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #64748b;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    color: #ffffff;
}

.wa-btn {
    background-color: #25D366;
}

.gmail-btn {
    background-color: #ea4335;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-btn svg {
        width: 22px !important;
        height: 22px !important;
    }
}
