
        /* ═══════════════════════════════════════════
           GHOSTWRITING PAGE STYLES
        ═══════════════════════════════════════════ */

        /* ── PAGE HERO ── */

.gw-hero-form {
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.gw-hero-email {
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,.15);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: white;
    color: #000000;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    width: 260px;
    transition: border-color 0.25s;
}

.gw-hero-email::placeholder {
    color: black !important;
}

.gw-hero-email:focus {
    border-color: var(--accent-purple);
}

.gw-hero-form-btn {
    padding: 15px 28px;
    background: var(--accent-purple);
    color: #fff;
    border: 2px solid var(--accent-purple);
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.gw-hero-form-btn:hover {
    background: #722bd4;
    border-color: #722bd4;
}

@media (max-width: 600px) {
    .gw-hero-form {
        flex-direction: column;
        width: 100%;
    }
    .gw-hero-email {
        width: 100%;
        border-right: 2px solid rgba(255,255,255,.15);
        border-radius: 6px 6px 0 0;
        border-bottom: none;
    }
    .gw-hero-form-btn {
        border-radius: 0 0 6px 6px;
    }
}


.gw-hero-visual {
    height: 400px;
}

.gw-hero-text h1 {
    font-size: 2.8rem;
}

.gw-hero-text > p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.gw-hero-stats {
    padding-top: 24px;
    gap: 28px;
}

.gw-hero-stat h4 {
    font-size: 1.6rem;
}
        .gw-hero {
            background: var(--primary-dark);
            padding: 90px 0px 90px;
            position: relative;
            overflow: hidden;
        }
        .gw-hero::before {
            content:'';
            position:absolute;
            top:-200px; right:-200px;
            width:600px; height:600px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(134,54,248,.15) 0%,transparent 70%);
            pointer-events:none;
        }
        .gw-hero::after {
            content:'';
            position:absolute;
            bottom:-150px; left:-150px;
            width:400px; height:400px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(232,201,106,.1) 0%,transparent 70%);
            pointer-events:none;
        }
        .gw-hero-inner {
            display:grid;
            grid-template-columns:1.1fr 1fr;
            gap:60px;
            align-items:center;
            position:relative;
            z-index:1;
        }
        .gw-hero-text .section-label { color:var(--gold); }
        .gw-hero-text h1 {
            font-family:'Playfair Display',serif;
            font-size:3.4rem;
            color:#fff;
            line-height:1.15;
            margin-bottom:20px;
        }
        .gw-hero-text h1 em { font-style:italic; color:var(--gold); }
        .gw-hero-text > p {
            color:rgba(255,255,255,.65);
            font-size:1.08rem;
            line-height:1.8;
            margin-bottom:32px;
            max-width:520px;
        }
        .gw-hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
        .gw-hero-stats {
            display:flex;
            gap:32px;
            padding-top:32px;
            border-top:1px solid rgba(255,255,255,.1);
        }
        .gw-hero-stat h4 {
            font-family:'Playfair Display',serif;
            font-size:2rem;
            color:var(--gold);
            margin-bottom:4px;
        }
        .gw-hero-stat p { color:rgba(255,255,255,.5); font-size:.85rem; margin:0; }

        /* Hero image side */
        .gw-hero-visual {
            position:relative;
            height:500px;
        }
        .gw-hero-visual .img-main {
            width:85%;
            height:100%;
            object-fit:cover;
            border-radius:var(--radius);
            box-shadow:0 30px 60px rgba(0,0,0,.4);
        }
        .gw-hero-visual .gw-badge {
            position:absolute;
            bottom:30px; right:0;
            background:#06031714;
            color:#fff;
            border-radius:var(--radius);
            padding:22px 28px;
            text-align:center;
            box-shadow:0 15px 40px rgba(134,54,248,.4);
        }
        .gw-badge span {
            display:block;
            font-family:'Playfair Display',serif;
            font-size:2.2rem;
            font-weight:700;
        }
        .gw-badge small { font-size:.8rem; opacity:.85; }

        /* ── BREADCRUMB ── */
        .gw-breadcrumb {
            background:var(--primary-dark);
            padding:0 0 20px;
        }
        .breadcrumb-list {
            display:flex;
            gap:8px;
            list-style:none;
            font-size:.85rem;
        }
        .breadcrumb-list li a { color:rgba(255,255,255,.45); }
        .breadcrumb-list li a:hover { color:var(--accent-purple); }
        .breadcrumb-list li::after { content:'›'; color:rgba(255,255,255,.25); margin-left:8px; }
        .breadcrumb-list li:last-child::after { display:none; }
        .breadcrumb-list li:last-child { color:rgba(255,255,255,.7); }

        /* ── HOW IT WORKS ── */
        .gw-process { background:var(--bg-light); }
        .gw-process .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position:relative;
        }
        .gw-process .section-head .section-label {
            position:absolute;
            top:-71px; left:50%;
            transform:translateX(-50%);
            font-size:5.5rem;
            opacity:.06;
            letter-spacing:4px;
            white-space:nowrap;
            z-index:0;
        }
        .gw-process .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
            position:relative; z-index:1;
        }
        .gw-process .section-head p { color:var(--text-light); font-size:1.05rem; }

        .gw-steps {
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:28px;
            counter-reset:stepcount;
        }
        .gw-step {
            background:#fff;
            border-radius:var(--radius);
            padding:36px 28px;
            box-shadow:var(--card-shadow);
            position:relative;
            transition:transform .3s, box-shadow .3s;
            counter-increment:stepcount;
        }
        .gw-step::before {
            content:counter(stepcount,decimal-leading-zero);
            font-family:'Playfair Display',serif;
            font-size:3.5rem;
            font-weight:700;
            color:rgba(134,54,248,.08);
            position:absolute;
            top:16px; right:20px;
            line-height:1;
        }
        .gw-step:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(6,3,23,.12); }
        .gw-step-icon {
            width:52px; height:52px;
            background:#06031714;
            border-radius:12px;
            display:flex; align-items:center; justify-content:center;
            margin-bottom:20px;
        }
        .gw-step-icon i { font-size:1.3rem; color:var(--accent-purple); }
        .gw-step h4 { font-size:1.05rem; color:var(--primary-dark); margin-bottom:10px; }
        .gw-step p { color:var(--text-light); font-size:.88rem; margin:0; line-height:1.6; }

        /* Connector line between steps */
        .gw-step-connector {
            display:none; /* hidden on mobile, shown via grid on desktop */
        }

        /* ── WHAT YOU GET ── */
        .gw-deliverables { background:#fff; }
        .gw-del-inner {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:70px;
            align-items:center;
        }
        .gw-del-text .section-label { color:var(--accent-purple); }
        .gw-del-text h2 {
            font-family:'Playfair Display',serif;
            font-size:2.6rem;
            color:var(--primary-dark);
            margin-bottom:16px;
            text-align:left;
        }
        .gw-del-text > p { color:var(--text-light); margin-bottom:32px; }
        .gw-del-list { list-style:none; display:flex; flex-direction:column; gap:16px; }
        .gw-del-list li {
            display:flex;
            align-items:flex-start;
            gap:14px;
            padding:16px 20px;
            background:var(--bg-light);
            border-radius:10px;
            transition:background .25s;
        }
        .gw-del-list li:hover { background:#f0e8ff; }
        .gw-del-check {
            width:24px; height:24px;
            background:var(--accent-purple);
            border-radius:50%;
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
            margin-top:2px;
        }
        .gw-del-check i { color:#fff; font-size:.7rem; }
        .gw-del-list li div strong { color:var(--primary-dark); display:block; font-size:.95rem; margin-bottom:2px; }
        .gw-del-list li div span { color:var(--text-light); font-size:.85rem; }

        .gw-del-image { position:relative; }
        .gw-del-image img {
            width:100%;
            border-radius:var(--radius);
            box-shadow:var(--card-shadow);
        }
        .gw-del-image .gw-del-badge {
            position:absolute;
                bottom: -22px; right:-20px;
            background:var(--primary-dark);
            color:#fff;
            border-radius:var(--radius);
            padding:20px 24px;
            text-align:center;
            box-shadow:0 10px 30px rgba(0,0,0,.3);
        }
        .gw-del-badge span {
            display:block;
            font-family:'Playfair Display',serif;
            font-size:2rem;
            font-weight:700;
            color:var(--gold);
        }
        .gw-del-badge small { color:#aaa; font-size:.78rem; }

        /* ── GENRES WE GHOSTWRITE ── */
        .gw-genres { background:var(--primary-dark); position:relative; overflow:hidden; }
        .gw-genres::before {
            content:'';
            position:absolute;
            top:-150px; left:50%;
            transform:translateX(-50%);
            width:800px; height:800px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(134,54,248,.12) 0%,transparent 70%);
            pointer-events:none;
        }
        .gw-genres .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position:relative; z-index:1;
        }
        .gw-genres .section-head .section-label { color:var(--gold); }
        .gw-genres .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:#fff;
            margin-bottom:16px;
        }
        .gw-genres .section-head p { color:#aaa; }

        .gw-genre-grid {
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:24px;
            position:relative; z-index:1;
        }
        .gw-genre-card {
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
            border-radius:var(--radius);
            padding: 25px 20px;
            transition:background .3s, transform .3s;
        }
        .gw-genre-card:hover {
            background:rgba(255,255,255,.09);
            transform:translateY(-4px);
        }
        .gw-genre-icon {
            width:48px; height:48px;
            background:rgba(134,54,248,.15);
            border-radius:10px;
            display:flex; align-items:center; justify-content:center;
            margin-bottom:18px;
        }
        .gw-genre-icon i { color:var(--accent-purple); font-size:1.2rem; }
        .gw-genre-card h4 { color:#fff; font-size:1.05rem; margin-bottom:8px; }
        .gw-genre-card p { color:#888; font-size:.88rem; margin:0; line-height:1.6; }

        /* ── PRICING / PACKAGES ── */
        .gw-pricing { background:var(--bg-section); }
        .gw-pricing .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position:relative;
        }
        .gw-pricing .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
        }
        .gw-pricing .section-head p { color:var(--text-light); font-size:1.05rem; }

        .gw-price-grid {
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:28px;
        }
        .gw-price-card {
            background:#fff;
            border-radius:var(--radius);
            padding:40px 32px;
            box-shadow:var(--card-shadow);
            position:relative;
            overflow:hidden;
            transition:transform .3s;
        }
        .gw-price-card.featured {
            border:2px solid var(--accent-purple);
        }
        /* .gw-price-card.featured::before {
            content:'Most Popular';
            position:absolute;
            top:20px; right:-32px;
            background:var(--accent-purple);
            color:#fff;
            font-size:.7rem;
            font-weight:700;
            letter-spacing:1px;
            text-transform:uppercase;
            padding:6px 40px;
            transform:rotate(45deg);
        } */
        .gw-price-card:hover { transform:translateY(-6px); }
        .gw-price-card h4 {
            font-size:1.1rem;
            color:var(--primary-dark);
            margin-bottom:8px;
        }
        .gw-price-card .gw-price-tag {
            font-family:'Playfair Display',serif;
            font-size:2.4rem;
            font-weight:700;
            color:var(--accent-purple);
            margin-bottom:4px;
        }
        .gw-price-card .gw-price-tag small {
            font-size:.9rem;
            font-weight:400;
            color:var(--text-light);
        }
        .gw-price-desc { color:var(--text-light); font-size:.88rem; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid #f0eaf8; }
        .gw-price-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
        .gw-price-features li {
            display:flex; align-items:center; gap:10px;
            color:var(--text-mid);
            font-size:.88rem;
        }
        .gw-price-features li i { color:var(--accent-purple); font-size:.75rem; }
        .gw-price-card .btn { width:100%; text-align:center; }

        /* ── GHOSTWRITING FAQ ── */
        .gw-faq { background:#fff; }
        .gw-faq .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
        }
        .gw-faq .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
        }
        .gw-faq .section-head p { color:var(--text-light); }

        /* ── CTA BOTTOM ── */
        .gw-cta-bottom {
            background:linear-gradient(135deg,var(--accent-purple) 0%,#4b1a99 100%);
            padding:120px 0;
            text-align:center;
            position:relative;
            overflow:hidden;
        }
        .gw-cta-bottom::before {
            content:'';
            position:absolute; inset:0;
            background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .gw-cta-bottom .container { position:relative; z-index:1; }
        .gw-cta-bottom h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:#fff;
            margin-bottom:16px;
        }
        .gw-cta-bottom p { color:rgba(255,255,255,.8); max-width:560px; margin:0 auto 36px; font-size:1.05rem; }

        /* ═══════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════ */
        @media(max-width:1100px) {
            .gw-hero-inner { grid-template-columns:1fr; text-align:center; }
            .gw-hero-text > p { margin:0 auto 32px; }
            .gw-hero-btns { justify-content:center; }
            .gw-hero-stats { justify-content:center; }
            .gw-hero-visual { display:none; }
            .gw-steps { grid-template-columns:repeat(2,1fr); }
            .gw-del-inner { grid-template-columns:1fr; }
            .gw-del-image { order:-1; }
            .gw-genre-grid { grid-template-columns:repeat(2,1fr); }
            .gw-price-grid { grid-template-columns:repeat(2,1fr); }
        }
        @media(max-width:768px) {
            .gw-hero-text h1 { font-size:2.4rem; }
            .gw-hero-stats { flex-direction:column; gap:16px; align-items:center; }
            .gw-steps { grid-template-columns:1fr; }
            .gw-genre-grid { grid-template-columns:1fr; }
            .gw-price-grid { grid-template-columns:1fr; }
            .gw-del-text h2 { font-size:2rem; text-align:center; }
            .gw-cta-bottom h2 { font-size:2rem; }
            .breadcrumb-list { justify-content:center; }
        }




        .gw-logos-track .logo-item {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.gw-logos-track .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
}
.gw-hero-logos {
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.gw-hero-logos-label {
    color: rgba(255,255,255,.35);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gw-logos-marquee {
    overflow: hidden;
    max-width: 500px;
    position: relative;
}

/* Fade edges */
.gw-logos-marquee::before,
.gw-logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.gw-logos-marquee::before {
    left: 0;
    /* background: linear-gradient(to right, var(--primary-dark), transparent); */
}

.gw-logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark), transparent);
}

.gw-logos-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: gw-logo-scroll 20s linear infinite;
    width: max-content;
}




@keyframes gw-logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
    .gw-logos-marquee {
        max-width: 100%;
        margin: 0 auto;
    }
    .gw-hero-logos-label {
        text-align: center;
    }
}


.gw-hero {
    background: var(--primary-dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Geometric grid lines */
.gw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Diagonal lines */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(134,54,248,.04) 80px,
            rgba(134,54,248,.04) 81px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(134,54,248,.04) 80px,
            rgba(134,54,248,.04) 81px
        ),
        /* Grid dots */
        radial-gradient(circle, rgba(134,54,248,.08) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Glowing orb top-right */
.gw-hero::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134,54,248,.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Floating geometric shapes via box-shadow trick on hero inner */
.gw-hero-inner::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(134,54,248,.1);
    border-radius: 12px;
    transform: rotate(35deg);
    z-index: 0;
}

.gw-hero-inner::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(232,201,106,.08);
    border-radius: 50%;
    z-index: 0;
}

/* Extra geometric elements */
.gw-hero-inner {
    position: relative;
    z-index: 1;
}

/* Diamond shape - add this new element in HTML or use shadow */
.gw-hero-text {
    position: relative;
    z-index: 2;
}

.gw-hero-visual {
    position: relative;
    z-index: 2;
}

span.section-label {
    color: #8636f8;
}

/* ═══════════════════════════════════════════
   PORTFOLIO MARQUEE - DOUBLE ROW
═══════════════════════════════════════════ */
.gw-portfolio {
    background: var(--primary-dark);
    padding: 80px 0 70px;
    overflow: hidden;
    position: relative;
}

.gw-portfolio::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134,54,248,.08) 0%, transparent 70%);
    pointer-events: none;
}

.gw-portfolio-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.gw-portfolio-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.gw-portfolio-head p {
    color: #aaa;
    font-size: 1.05rem;
}

/* Marquee rows */
.gw-marquee-row {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.gw-marquee-row:last-child {
    margin-bottom: 0;
}

/* Fade edges */
.gw-marquee-row::before,
.gw-marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.gw-marquee-row::before {
    left: 0;
    background: linear-gradient(to right, #060317, transparent);
}

.gw-marquee-row::after {
    right: 0;
    background: linear-gradient(to left, #060317, transparent);
}

/* Track */
.gw-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.gw-marquee-track img {
    width: 140px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.4);
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gw-marquee-track img:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 40px rgba(134,54,248,.3);
    z-index: 3;
    position: relative;
}

/* Left to Right */
.gw-marquee-ltr {
    animation: gw-scroll-ltr 45s linear infinite;
}

/* Right to Left */
.gw-marquee-rtl {
    animation: gw-scroll-rtl 40s linear infinite;
}

@keyframes gw-scroll-ltr {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes gw-scroll-rtl {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .gw-marquee-track img {
        width: 110px;
        height: 165px;
    }
    .gw-portfolio-head h2 {
        font-size: 2rem;
    }
    .gw-portfolio {
        padding: 60px 0 50px;
    }
}

@media (max-width: 480px) {
    .gw-marquee-track img {
        width: 90px;
        height: 135px;
    }
    .gw-marquee-row::before,
    .gw-marquee-row::after {
        width: 40px;
    }
}

/* ═══════════════════════════════════════════
   PACKAGES - NO PRICE, ENHANCED UI
═══════════════════════════════════════════ */
.gw-pricing {
    background: var(--bg-section);
}

.gw-pricing .section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
    position: relative;
}

.gw-pricing .section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.gw-pricing .section-head p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.gw-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Card base */
.gw-price-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 32px 36px;
    box-shadow: 0 8px 35px rgba(6,3,23,.07);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.gw-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(6,3,23,.14);
}

/* Featured card */
.gw-price-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(180deg, #faf7ff 0%, #fff 30%);
    transform: scale(1.04);
    z-index: 2;
}

.gw-price-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

/* Ribbon */
.gw-featured-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent-purple);
    color: #fff;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 0;
}

.gw-price-card.featured {
    padding-top: 56px;
}

/* Top icon */
.gw-price-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0e8ff, #e0d0ff);
}

.gw-price-icon i {
    font-size: 1.4rem;
    color: var(--accent-purple);
}

.gw-price-card.featured .gw-price-icon {
    background: linear-gradient(135deg, var(--accent-purple), #4b1a99);
}

.gw-price-card.featured .gw-price-icon i {
    color: #fff;
}

/* Title */
.gw-price-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Description */
.gw-price-for {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Divider */
.gw-price-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0daea, transparent);
    margin-bottom: 24px;
}

/* Features list */
.gw-price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
    flex: 1;
}

.gw-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-mid);
    font-size: 0.88rem;
}

.gw-price-features li i {
    color: var(--accent-purple);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    background: #f0e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gw-price-card.featured .gw-price-features li i {
    background: rgba(134,54,248,.15);
}

.gw-price-features li strong {
    color: var(--primary-dark);
}

/* CTA Button */
.gw-pkg-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    background: transparent;
}

.gw-pkg-btn:hover {
    background: var(--accent-purple);
    color: #fff;
    transform: translateY(-2px);
}

/* Primary button for featured */
.gw-pkg-btn-primary {
    background: var(--accent-purple);
    color: #fff;
    border-color: var(--accent-purple);
}

.gw-pkg-btn-primary:hover {
    background: #722bd4;
    border-color: #722bd4;
    box-shadow: 0 8px 24px rgba(134,54,248,.35);
    color: #fff;
}

/* Bottom note */
.gw-pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gw-pricing-note a {
    color: var(--accent-purple);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.25s;
}

.gw-pricing-note a:hover {
    color: #722bd4;
}

/* Responsive */
@media (max-width: 1100px) {
    .gw-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-price-card.featured {
        transform: scale(1);
    }
    .gw-price-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .gw-price-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}
.gw-pricing .section-head .section-label {
    position: absolute;
    display: inline;
    top: -71px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.5rem;
    opacity: 0.06;
    letter-spacing: 4px;
    white-space: nowrap;
    z-index: 10;
    color: #722bd4;
} 
.gw-pricing .section-head {
    position: relative;
    overflow: visible;
}

/* ═══════════════════════════════════════════
   WHAT'S INCLUDED - SPLIT LAYOUT
═══════════════════════════════════════════ */
.gw-deliverables {
    background: #fff;
}

/* Top: heading left, description right */
.gw-del-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0eaf8;
}

.gw-del-top-left .section-label {
    color: var(--accent-purple);
}

.gw-del-top-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}

.gw-del-top-right {
    padding-top: 40px;
}

.gw-del-top-right p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Bottom: checklist left, image right */
.gw-del-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Checklist - 2 column grid */
.gw-del-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gw-del-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gw-del-check {
    width: 28px;
    height: 28px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gw-del-check i {
    color: #fff;
    font-size: 0.65rem;
}

.gw-del-item strong {
    color: var(--accent-purple);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    margin-bottom: 4px;
}

.gw-del-item p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Buttons row - spans full width */
.gw-del-btns {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 12px;
}

.gw-del-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s;
}

.gw-del-phone i {
    color: var(--accent-purple);
}

.gw-del-phone:hover {
    color: var(--accent-purple);
}

/* Image side */
.gw-del-image {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.gw-del-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(6,3,23,.12);
}

.gw-del-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 22px 26px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.3);
}

.gw-del-badge span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.gw-del-badge small {
    color: #aaa;
    font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .gw-del-top {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gw-del-top-right {
        padding-top: 0;
    }
    .gw-del-bottom {
        grid-template-columns: 1fr;
    }
    .gw-del-image {
        order: -1;
    }
    .gw-del-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gw-del-top-left h2 {
        font-size: 2rem;
        text-align: center;
    }
    .gw-del-top-left .section-label {
        display: block;
        text-align: center;
    }
    .gw-del-top-right p {
        text-align: center;
    }
    .gw-del-checklist {
        grid-template-columns: 1fr;
    }
    .gw-del-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .gw-del-image img {
        height: 280px;
    }
    .gw-del-badge {
        bottom: -15px;
        left: 15px;
    }
}
/* Check circle - subtle dark instead of purple */
.gw-del-check {
    width: 28px;
    height: 28px;
    background: rgba(6,3,23,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gw-del-check i {
    color: var(--accent-purple);
    font-size: 0.65rem;
}

/* Title - dark instead of purple */
.gw-del-item strong {
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    margin-bottom: 4px;
}
.gw-del-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--primary-dark);
    padding: 14px 28px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.gw-del-phone i {
    color: #fff;
}

.gw-del-phone:hover {
    background: #1a1630;
    transform: translateY(-2px);
    color: #fff;
}
/* Genre image instead of icon */
.gw-genre-img {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.gw-genre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gw-genre-card:hover .gw-genre-img img {
    transform: scale(1.08);
}
.gw-cta-bottom {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.gw-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gw-cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6,3,23,0.8);
    z-index: 1;
}

.gw-cta-bottom .container {
    position: relative;
    z-index: 2;
}

.gw-cta-bottom h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.gw-cta-bottom p {
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}
.gw-faq  .section-head .section-label {
    position: absolute;
    display: inline;
    top: -71px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.5rem;
    opacity: 0.06;
    letter-spacing: 4px;
    white-space: nowrap;
    z-index: 10;
    color: #722bd4;
} 
.gw-faq  .section-head {
    position: relative;
    overflow: visible;
}

.gw-hero-book {
    position: absolute;
    bottom: 30px;
    right: -20px;
    z-index: 3;
}

.gw-hero-book img {
    width: 209px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .5);
    transition: transform 0.3s;
}



.gw-hero-book img:hover {
    transform: translateY(-6px);
}

/* ═══════════════════════════════════════════
   EQUAL BOXES LAYOUT (No Lines)
═══════════════════════════════════════════ */

/* Grid Setup for 4 Equal Columns */
.mkt-tl-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch; /* Yeh sab boxes ki height barabar karega */
}

/* Force Remove All Lines/Artifacts */
.mkt-tl-wrap::before,
.mkt-tl-wrap::after,
.mkt-tl-item::before,
.mkt-tl-item::after {
    display: none !important;
}

/* Individual Item Wrapper */
.mkt-tl-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hide the dot completely (Kyunke aapko sirf boxes chahiyein) */
.mkt-tl-dot {
    display: none !important;
}

/* ── MAIN BOX (CARD) STYLING ── */
.mkt-tl-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1; /* Box ko stretch karke equal height banayega */
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect for Premium Look */
.mkt-tl-content:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(134, 54, 248, 0.5); /* Accent Purple Border */
}

/* Phase Label (Day 1-30) */
.mkt-tl-content .tl-phase {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold, #e8c96a);
    background: rgba(232, 201, 106, 0.1);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Heading - White Color for dark theme */
.mkt-tl-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Description Text - Light Grey */
.mkt-tl-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE (Tablets & Mobile)
═══════════════════════════════════════════ */

/* Tablets - 2 Boxes per row */
@media (max-width: 1024px) {
    .mkt-tl-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 Box per row */
@media (max-width: 600px) {
    .mkt-tl-wrap {
        grid-template-columns: 1fr;
    }
    .mkt-tl-content {
        padding: 30px 20px;
    }
}


.pub-plat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.pub-plat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}