:root {
    --ch-color:     #F97316;
    --ch-color-dark:#ea580c;
    --ch-color-rgb: 249, 115, 22;
}

/* HERO  */
.ppc-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FFF7ED;
}

.ppc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(250, 73, 74, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(253, 199, 51, 0.03) 0%, transparent 70%);
}

.ppc-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(250, 73, 74, 0.04) 0%, transparent 40%, rgba(250, 73, 74, 0.02) 50%, transparent 60%, rgba(250, 73, 74, 0.01) 70%, transparent 80%);
    animation: ppcRipple 6s ease-in-out infinite;
}

@keyframes ppcRipple {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.ppc-hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    filter: blur(50px);
}

.ppc-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;
}

.ppc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 88, 12, 0.10);
    border: 1px solid rgba(234, 88, 12, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #c2410c;
    margin-bottom: 24px;
}

.ppc-badge-dot {
    width: 8px;
    height: 8px;
    background: #fa494a;
    border-radius: 50%;
    animation: ppcPulse 2s infinite;
}

@keyframes ppcPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ppc-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;
}

.ppc-hero-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.ppc-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ppc-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);
}

.ppc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--ch-color-rgb), 0.4);
    color: #fff;
}

.ppc-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;
}

.ppc-btn-secondary:hover {
    border-color: #ea580c;
    color: #ea580c;
    background: rgba(234, 88, 12, 0.05);
}

.ppc-hero-stats {
    display: flex;
    gap: 40px;
}

.ppc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ppc-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(234, 88, 12, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #c2410c;
    margin-bottom: 4px;
}

.ppc-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
}

.ppc-stat-label {
    font-size: 13px;
    color: #5b6780;
}

/* Architecture Diagram Visual — phones → server → client app */
.ppc-dashboard {
    position: relative;
    width: 100%;
    max-width: 760px;
    min-height: 680px;
    margin: 0 auto;
    padding: 32px;
    overflow: visible;
}



.laptop {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    z-index: 2;
}

.screen {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(33, 58, 102, 0.14);
    border-radius: 30px 30px 16px 16px;
    padding: 36px 32px 28px;
    min-height: 410px;
    box-shadow: 0 32px 68px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.camera {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f2748;
}

.keyboard {
    width: calc(100% - 40px);
    max-width: 700px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dde2ea, #c8d2e2);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.shadow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    width: 92%;
    max-width: 680px;
    height: 36px;
    background: rgba(15, 23, 42, 0.12);
    border-radius: 50%;
    filter: blur(14px);
}

.dashboard-title {
    font-size: 26px;
    font-weight: 800;
    color: #152a4f;
    margin-bottom: 24px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat {
    background: #f9fbff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 18px;
    min-height: 98px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.stat span {
    display: block;
    font-size: 12px;
    color: #7b8797;
}

.stat h4 {
    margin: 10px 0 0;
    font-size: 26px;
    color: #1d3a69;
}

.chart {
    position: relative;
    height: 240px;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(#edf2f7 1px, transparent 1px),
      linear-gradient(90deg, #edf2f7 1px, transparent 1px);
    background-size: 28px 28px;
}

.chart-line {
    position: absolute;
    left: 46px;
    bottom: 42px;
    width: 280px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2d72ff 0%, #7c3aed 100%);
    box-shadow:
      0 -1px 12px rgba(45, 114, 255, 0.18),
      0 4px 20px rgba(124, 58, 237, 0.14);
}

.bars {
    position: absolute;
    left: 52px;
    bottom: 32px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 106px;
}

.bars span {
    display: inline-block;
    width: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa 0%, #1d4ed8 100%);
}

.bars span:nth-child(1) { height: 48px; }
.bars span:nth-child(2) { height: 72px; }
.bars span:nth-child(3) { height: 90px; }
.bars span:nth-child(4) { height: 62px; }
.bars span:nth-child(5) { height: 78px; }
.bars span:nth-child(6) { height: 54px; }
.bars span:nth-child(7) { height: 76px; }

.donut-chart {
    position: absolute;
    right: 22px;
    top: 30px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: conic-gradient(#ff7b00 0 25%, #2f73f6 25% 55%, #36b95a 55% 80%, #ffd34d 80% 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8);
}

.donut-inner {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #1a3b67;
    line-height: 1.2;
}

.platform {
    position: absolute;
    width: 240px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 11;
}

.platform:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.14);
}

.platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.platform-content h6 {
    margin: 0;
    font-size: 15px;
    color: #183963;
}

.platform-content small {
    color: #6f7786;
}

.google { top: 18px; left: 20px; }
.facebook { top: 20px; right: 18px; }
.keyword { top: 250px; left: -50px; }
.analytics { bottom: 103px; left: 0; }
.instagram { top: 219px; right: -90px; }
.linkedin { bottom: 125px; right: -24px; }

.line {
    position: absolute;
    border-top: 2px dotted rgba(249, 115, 22, 0.45);
}

.line1 { top: 82px; left: 238px; width: 86px; }
.line2 { top: 92px; right: 178px; width: 92px; }
.line3 { top: 242px; left: 120px; width: 72px; }
.line4 { top: 254px; right: 118px; width: 80px; }
.line5, .line6 { display: none; }

.cursor {
    position: absolute;
    left: 50%;
    bottom: 300px;
    transform: translateX(-50%);
    font-size: 44px;
    color: #243b63;
    z-index: 20;
}

.ripple, .ripple2, .ripple3 {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 42px;
    height: 42px;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.ripple2 { animation-delay: .7s; }
.ripple3 { animation-delay: 1.4s; }

@keyframes ripple {
    0% { transform: scale(.4); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

@media(max-width:991px) {
    .ppc-hero-inner { grid-template-columns: 1fr; padding: 60px 24px 40px; }
    .ppc-dashboard { width: 100%; min-height: auto; padding: 22px 18px 18px; }
    .platform, .line, .cursor { display: none; }
    .laptop { position: relative; left: auto; top: auto; transform: none; width: 100%; }
    .keyboard { width: 100%; margin-left: 0; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .chart { height: 220px; }
}



/* WHY SECTION */
.ppc-why {
    padding: 100px 0;
    background: #fff;
}

.ppc-section-header {
    margin-bottom: 60px;
}

.ppc-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fa494a;
    background: rgba(250, 73, 74, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: ppcFloatBadge 3s ease-in-out infinite;
}

@keyframes ppcFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ppc-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;
}

.ppc-section-header p {
    font-size: 18px;
    color: #5b6780;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.ppc-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.ppc-cap-card {
    background: #fff0f0;
    border: 1px solid rgba(250, 73, 74, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

.ppc-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ppc-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.ppc-cap-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.ppc-cap-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* FEATURES  */
.ppc-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fff0f0;
}

.ppc-features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(250, 73, 74, 0.15);
    border-radius: 50%;
    filter: blur(90px);
    top: -100px;
    left: -80px;
    z-index: 0;
}

.ppc-features::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(250, 73, 74, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
}

.ppc-features .container {
    position: relative;
    z-index: 2;
}

.ppc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ppc-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);
}

.ppc-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;
}

.ppc-feature-card:nth-child(1)::before { background: #fa494a; }
.ppc-feature-card:nth-child(2)::before { background: #25D366; }
.ppc-feature-card:nth-child(3)::before { background: #15aaff; }
.ppc-feature-card:nth-child(4)::before { background: #fdc733; }
.ppc-feature-card:nth-child(5)::before { background: #fa494a; }
.ppc-feature-card:nth-child(6)::before { background: #25D366; }

.ppc-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ppc-feature-card:hover::before {
    transform: scale(1.5);
}

.ppc-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;
}

.ppc-feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.ppc-feature-card p {
    font-size: 15px;
    color: #5b6780;
    line-height: 1.7;
}


/* HOW IT WORKS  */
.ppc-how {
    padding: 100px 0;
    background: #fff;
}

.ppc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.ppc-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.ppc-step-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.ppc-step:nth-child(1) .ppc-step-num {
    background: linear-gradient(135deg, #fa494a, #d93c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppc-step:nth-child(3) .ppc-step-num {
    background: linear-gradient(135deg, #fdc733, #e5b200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppc-step:nth-child(5) .ppc-step-num {
    background: linear-gradient(135deg, #25D366, #1ea855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppc-step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.ppc-step-content p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.7;
}

.ppc-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fa494a, #d93c3d);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


/* USE CASES */
.ppc-usecases {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ppc-usecases::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(250, 73, 74, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    top: 50px;
    right: -60px;
    z-index: 0;
}

.ppc-usecases .container {
    position: relative;
    z-index: 2;
}

.ppc-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ppc-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);
}

.ppc-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;
}

.ppc-usecase-card:nth-child(1)::before { background: #fa494a; }
.ppc-usecase-card:nth-child(2)::before { background: #15aaff; }
.ppc-usecase-card:nth-child(3)::before { background: #25D366; }
.ppc-usecase-card:nth-child(4)::before { background: #fdc733; }

.ppc-usecase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ppc-usecase-card:hover::before {
    transform: scale(1.6);
}

.ppc-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;
}

.ppc-usecase-card:nth-child(1) .ppc-usecase-icon {
    background: rgba(250, 73, 74, 0.1);
    color: #fa494a;
}

.ppc-usecase-card:nth-child(2) .ppc-usecase-icon {
    background: rgba(21, 170, 255, 0.1);
    color: #15aaff;
}

.ppc-usecase-card:nth-child(3) .ppc-usecase-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.ppc-usecase-card:nth-child(4) .ppc-usecase-icon {
    background: rgba(253, 199, 51, 0.1);
    color: #d4a500;
}

.ppc-usecase-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.ppc-usecase-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* CTA  */
.ppc-cta {
    padding: 100px 0;
    background: #fff;
}

.ppc-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1a0a0d 0%, #2d1215 50%, #3d1a1e 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.ppc-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 73, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ppc-cta-content {
    position: relative;
    z-index: 1;
}

.ppc-cta-content .ppc-mini-badge {
    background: rgba(250, 73, 74, 0.2);
    color: #fca5a5;
}

.ppc-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ppc-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.ppc-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ppc-cta-visual {
    position: relative;
    z-index: 1;
}

.ppc-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);
}

.ppc-cta-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ppc-dot-green {
    width: 10px;
    height: 10px;
    background: #fa494a;
    border-radius: 50%;
    animation: ppcPulse 2s infinite;
}

.ppc-cta-card-top span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ppc-cta-metrics {
    display: flex;
    gap: 32px;
}

.ppc-cta-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ppc-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.ppc-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .ppc-hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

    .ppc-hero-visual {
        display: none;
    }

    .ppc-hero-content {
        text-align: center;
    }

    .ppc-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .ppc-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ppc-hero-actions {
        justify-content: center;
    }

    .ppc-hero-stats {
        justify-content: center;
    }

    .ppc-capabilities {
        grid-template-columns: 1fr;
    }

    .ppc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ppc-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ppc-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .ppc-why {
        padding: 70px 0;
    }

    .ppc-features {
        padding: 70px 0;
    }

    .ppc-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .ppc-hero-inner {
        padding: 100px 20px 40px;
    }

    .ppc-hero-content h1 {
        font-size: 30px;
    }

    .ppc-hero-desc {
        font-size: 15px;
    }

    .ppc-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ppc-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .ppc-features-grid {
        grid-template-columns: 1fr;
    }

    .ppc-usecase-grid {
        grid-template-columns: 1fr;
    }

    .ppc-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .ppc-step-line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .ppc-step {
        padding: 0 12px;
    }

    .ppc-cta-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .ppc-why {
        padding: 50px 0;
    }

    .ppc-features {
        padding: 50px 0;
    }

    .ppc-section-header h2 {
        font-size: 26px;
    }

    .ppc-section-header p {
        font-size: 15px;
    }

    .ppc-cta-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .ppc-feature-card {
        padding: 24px;
    }

    .ppc-usecase-card {
        padding: 24px;
    }
    .ppc-dashboard{
        display:none;
    }
}

@media (max-width: 480px) {
    .ppc-hero-inner {
        padding: 90px 16px 32px;
    }

    .ppc-hero-content h1 {
        font-size: 26px;
    }

    .ppc-hero-desc {
        font-size: 14px;
    }

    .ppc-hero-stats {
        gap: 12px;
    }

    .ppc-stat-num {
        font-size: 20px;
    }

    .ppc-stat-label {
        font-size: 11px;
    }

    .ppc-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .ppc-why {
        padding: 40px 0;
    }

    .ppc-features {
        padding: 40px 0;
    }

    .ppc-section-header h2 {
        font-size: 22px;
    }

    .ppc-section-header p {
        font-size: 14px;
    }

    .ppc-step-num {
        font-size: 36px;
    }

    .ppc-cta-wrapper {
        padding: 24px 16px;
    }

    .ppc-capabilities {
        gap: 16px;
    }

    .ppc-features-grid {
        gap: 16px;
    }

    .ppc-usecase-grid {
        gap: 16px;
    }
    .ppc-dashboard{
        display:none;
    }
}