:root {
            --primary-dark: #1A2A44;
            --accent-purple: #5B7C99;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #F8F5F0;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

        a {
            text-decoration: none;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-purple);
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4 {
            color: var(--primary-dark);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        h1 { font-size: 4rem; font-family: 'Playfair Display', serif; position: relative; }

        .hero-text h1 {
            font-size: 4.5rem;
            color: #1A2A44;
            text-transform: capitalize;
            letter-spacing: 1px;
            position: relative;
        }
        .hero-text h1::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            color: #1A2A44;
            -webkit-text-stroke: 2px #1A2A44;
            z-index: -1;
        }
 
        h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
        h3 { font-size: 1.5rem; }

        p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            background-color: var(--accent-purple);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn:hover {
            background-color: #4a6a85;
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-dark {
            background-color: var(--primary-dark);
        }
        
        .btn-dark:hover {
            background-color: #243a56;
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            max-width: 1300px !important;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        /* --- HEADER handled by site-header.css --- */
        .logo span {
            color: var(--accent-purple);
        }

        /* --- HERO SECTION --- */
        .hero {
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
               padding: 25px 0 70px 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-top-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--accent-purple);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .hero-text p {
            color: #333333;
            font-size: 1.1rem;
        }

        .hero-image {
            flex: 1;
            display: flex;
            gap: 15px;
            justify-content: center;
            height: 600px;
            align-items: center;
            perspective: 1000px;
        }

        .marquee-col {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            width: 160px;
            height: 600px;
            border-radius: 5px;
            position: relative;
        }

        .marquee-col::before,
        .marquee-col::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 60px;
            pointer-events: none;
            z-index: 10;
        }

        .marquee-col::before {
            top: 0;
            background: linear-gradient(to bottom, rgba(248, 245, 240, 1), rgba(248, 245, 240, 0));
        }

        .marquee-col::after {
            bottom: 0;
            background: linear-gradient(to top, rgba(248, 245, 240, 1), rgba(248, 245, 240, 0));
        }

        .marquee-track {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 10px 0;
        }

        .marquee-col img {
            width: 160px;
            height: 240px;
            border-radius: 5px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            object-fit: cover;
            flex-shrink: 0;
        }

        @keyframes marquee-down {
            from { transform: translateY(-50%); }
            to { transform: translateY(0); }
        }

        @keyframes marquee-up {
            from { transform: translateY(0); }
            to { transform: translateY(-50%); }
        }

        .marquee-down .marquee-track {
            animation: marquee-down 30s linear infinite;
        }

        .marquee-up .marquee-track {
            animation: marquee-up 30s linear infinite;
        }

        /* --- LOGO GRID SECTION --- */
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 15px;
            max-width: 600px;
            margin: 20px 0 0;
        }
        .hero-logo-grid {
            max-width: 500px;
            gap: 10px;
            margin-top: 30px;
            margin-left: 0;
        }

        .logo-item {
            width: 100px;
            height: 100px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            overflow: hidden;
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* --- STATS SECTION --- */
        .stats-section {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }

        .stat-item h3 {
            color: var(--white);
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 5px;
        }

        .stat-item p {
            color: #e6e6e6;
            font-size: 0.9rem;
            margin: 0;
        }

        .stats-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .stats-cta h3 {
            color: var(--white);
            margin: 0;
        }

        /* --- BOOKS SHOWCASE --- */
        .books-showcase {
            background-color: var(--bg-light);
        }

        .books-showcase h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 300;
            text-align: center;
            color: var(--primary-dark);
            padding-bottom: 50px;
        }

        @media (max-width: 992px) {
            .books-showcase h2 {
                font-size: 1.8rem;
            }
            .hero {
                background-color: var(--bg-light);
                display: flex !important;
                align-items: center !important;
                overflow: hidden !important;
                padding: 25px 0 70px 0;
            }
        }

        .books-carousel {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            margin-top: 24px;
        }

        .books-viewport {
            overflow: hidden;
            flex: 1 1 auto;
        }

        .books-track {
            display: flex !important;
            gap: 20px !important;
            transition: transform 0.5s cubic-bezier(.2,.9,.2,1) !important;
            will-change: transform !important;
        }

        .books-track .book-card {
            flex: 0 0 20%;
            max-width: 20%;
        }

        .carousel-arrow {
            background: #fff;
            border: 2px solid #d4cfc7;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(26,42,68,0.08);
            cursor: pointer;
            font-size: 1.3rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
            color: var(--primary-dark);
            flex-shrink: 0;
        }
        .carousel-arrow:hover {
            background: var(--accent-purple);
            border-color: var(--accent-purple);
            color: #fff;
        }
        .carousel-arrow:active { transform: scale(0.98); }

        @media (max-width: 1200px) {
            .books-track .book-card { flex: 0 0 25%; max-width: 25%; }
        }

        @media (max-width: 992px) {
            .book-card .book-cover img { width: 150px; height: 225px; }
            .books-track .book-card { flex: 0 0 33.3333%; max-width: 33.3333%; }
        }

        @media (max-width: 600px) {
            .timeline-flex {
                display: flex;
                align-items: center;
                gap: 60px;
                flex-direction: column;
            }
            .books-track .book-card { flex: 0 0 50%; max-width: 50%; }
            .carousel-arrow { display: none; }
            .hero {
                background-color: var(--bg-light);
                display: flex;
                align-items: center;
                overflow: hidden;
                padding: 25px 0 70px 0;
            }
        }

        .book-card {
            text-align: center;
            padding-bottom: 50px;
            top: 50px;
            position: relative;
        }

        .book-card .book-cover {
            display: flex;
            justify-content: center;
        }

        .book-card .book-cover img {
            width: 180px;
            height: 270px;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 20px 35px rgba(26,42,68,0.45);
            transform: translateY(-28px);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            z-index: 3;
        }

        .book-card .book-cover img:hover {
            transform: translateY(-34px);
            box-shadow: 0 30px 45px rgba(26,42,68,0.55);
        }

        .book-desc {
            background: var(--primary-dark);
            color: #ffffff;
            padding: 48px 14px 18px;
            border-radius: 12px;
            margin-top: -60px;
            position: relative;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            text-align: left;
            z-index: 1;
        }

        .book-desc h4 {
            margin: 0;
            font-size: 1rem;
            color: #ffffff;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-style: italic;
            line-height: 1.1;
        }

        .book-desc p {
            margin: 6px 0 0;
            color: #e6eef1;
            font-size: 0.95rem;
        }

        .books-showcase.section-padding { padding-top: 100px; padding-bottom: 100px; }

        .book-card img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* ── RESET & TOKENS ── */
        :root {
            --primary-dark: #1A2A44;
            --accent-purple: #5B7C99;
            --accent-purple-light: #7a9ab5;
            --text-dark: #333333;
            --text-mid: #444455;
            --text-light: #666666;
            --bg-light: #F8F5F0;
            --bg-section: #F8F5F0;
            --white: #ffffff;
            --gold: #C7A56B;
            --card-shadow: 0 12px 40px rgba(26,42,68,.10);
            --radius: 14px;
        }
        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        body { font-family:'Open Sans',sans-serif; color:var(--text-dark); line-height:1.7; background:var(--white); }
        img { max-width:100%; display:block; }
        a { text-decoration:none; color:inherit; transition:color .25s; }
        h1,h2,h3,h4 { line-height:1.2; }

        .container { max-width:1300px !important; margin:0 auto; padding:0 24px; }
        .section-padding { padding:100px 0; }
        .text-center { text-align:center; }

        /* ── BUTTONS ── */
        .btn {
            display:inline-block;
            background:var(--accent-purple);
            color:#fff;
            padding:14px 34px;
            border-radius:6px;
            font-weight:700;
            font-size:.95rem;
            letter-spacing:.3px;
            border:none;
            cursor:pointer;
            transition:background .3s, transform .2s, box-shadow .3s;
        }
        .btn:hover { background:#4a6a85; color:#fff; transform:translateY(-2px); box-shadow:0 8px 24px rgba(91,124,153,.35); }
        .btn-dark { background:var(--primary-dark); }
        .btn-dark:hover { background:#243a56; box-shadow:0 8px 24px rgba(26,42,68,.35); }
        .btn-outline {
            background:transparent;
            border:2px solid var(--accent-purple);
            color:var(--accent-purple);
        }
        .btn-outline:hover { background:var(--accent-purple); color:#fff; }
        .btn-white {
            background:#fff;
            color:var(--accent-purple);
        }
        .btn-white:hover { background:#f0ebe3; color:var(--accent-purple); }

        /* ── SECTION LABELS ── */
        .section-label {
            display:inline-block;
            font-size:.8rem;
            font-weight:700;
            letter-spacing:2px;
            text-transform:uppercase;
            color:var(--gold);
            margin-bottom:14px;
        }

        /* ═══════════════════════════════════════════
           1. DETAILED SERVICES SECTION
        ═══════════════════════════════════════════ */
        .services-detailed { background: var(--primary-dark); }

        .services-detailed .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 70px;
            position:relative;
        }
       .services-detailed .section-head .section-label {
            position: absolute;
            top: -96px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 7.5rem;
            opacity: 0.06;
            letter-spacing: 4px;
            color: var(--gold);
            white-space: nowrap;
            z-index: 0;
        }
        .services-detailed .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color: #fff;
            margin-bottom:16px;
            position:relative;
            z-index:1;
        }
        .services-detailed .section-head p {
            color: #aaa;
            font-size:1.05rem;
        }

        /* Service tabs */
        .service-tabs {
            display:flex;
            gap:10px;
            justify-content:center;
            flex-wrap:wrap;
            margin-bottom:56px;
        }
        .service-tab-btn {
            padding:14px 36px;
            border-radius:5px;
            border:2px solid rgba(255,255,255,.15);
            color: #ccc;
            font-weight:600;
            font-size:1rem;
            cursor:pointer;
            background: transparent;
            transition:all .25s;
        }
        .service-tab-btn.active, .service-tab-btn:hover {
            background:var(--accent-purple);
            border-color:var(--accent-purple);
            color:#fff;
        }

        .service-panel { display:none; }
        .service-panel.active { display:flex; align-items:center; gap:70px; }
        .service-panel:nth-child(even) { flex-direction:row-reverse; }

        .service-panel-text { flex:1; }
        .service-panel-text h3 {
            font-family:'Playfair Display',serif;
            font-size:2rem;
            color: #fff;
            margin-bottom:16px;
        }
        .service-panel-text p { color:#fff; font-size:1rem; margin-bottom:20px; }
        .service-features {
            color: #fff;
            list-style:none;
            margin-bottom:32px;
        }
        .service-features li {
            display:flex;
            align-items:flex-start;
            gap:12px;
            padding:10px 0;
            border-bottom:1px solid rgba(255,255,255,.1);
            color: #ccc;
            font-size:.95rem;
        }
        .service-features li strong {
            color: #fff !important;
        }
        .service-features li:last-child { border-bottom:none; }
        .feature-icon {
            width:22px;
            height:22px;
            background:var(--accent-purple);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            flex-shrink:0;
            margin-top:2px;
        }
        .feature-icon svg { width:12px; height:12px; fill:#fff; }

        .service-panel-image { flex:1; }
        .service-panel-image .img-stack {
            position:relative;
            height:440px;
        }
        .service-panel-image .img-main {
            width:90%;
            height:420px;
            object-fit:cover;
            border-radius:var(--radius);
            box-shadow:var(--card-shadow);
            position:absolute;
            top:0;
            left:0;
        }
        .service-panel-image .img-badge {
            position:absolute;
            bottom:20px;
            right:0;
            background:var(--primary-dark);
            color:#fff;
            border-radius:var(--radius);
            padding:20px 24px;
            text-align:center;
            box-shadow:0 8px 30px rgba(0,0,0,.25);
        }
        .img-badge span { display:block; font-size:2rem; font-weight:700; font-family:'Playfair Display',serif; color:var(--gold); }
        .img-badge small { font-size:.8rem; color:#ccc; }

        /* ═══════════════════════════════════════════
           2. PUBLISHING SOLUTIONS GRID
        ═══════════════════════════════════════════ */
        .solutions-section { background:var(--bg-section); }

        .solutions-section .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position:relative;
        }
        .solutions-section .section-head .section-label {
            position: absolute;
            top: -71px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 5.5rem;
            opacity: 0.06;
            letter-spacing: 4px;
            white-space: nowrap;
            color: #5B7C99 !important;
            z-index: 0;
        }
        .solutions-section .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
            position:relative;
            z-index:1;
        }
        .solutions-section .section-head p { color:var(--text-light); font-size:1.05rem; }

        .solutions-grid {
            display:grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .solution-card {
            padding: 30px 16px;
            text-align: center;
            border-radius: var(--radius);
            box-shadow: none;
            transition: transform .3s, box-shadow .3s;
        }
        .solution-card:nth-child(odd) {
            background: var(--white);
            box-shadow: 0 4px 15px rgba(26,42,68,.06);
        }
        .solution-card:nth-child(even) {
            background: transparent;
            box-shadow: none;
        }

        .solution-card::before {
            display: none;
        }
        .solution-card:nth-child(odd):hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(26,42,68,.10);
        }
        .solution-card:nth-child(even):hover {
            background: rgba(91,124,153,.04);
        }
        .solution-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(26,42,68,.14); }

        .solution-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8dfd2, #d9cdbf);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            padding: 10px;
        }
        .solution-icon svg { width:28px; height:28px; fill:var(--accent-purple); }
        .solution-card h4 {
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 0;
        }
        .solution-card p { color:var(--text-light); font-size:.9rem; margin:0; line-height:1.6; display: none; }

        /* ═══════════════════════════════════════════
           3. WHY CHOOSE US
        ═══════════════════════════════════════════ */
        .why-us { background:var(--primary-dark); overflow:hidden; position:relative; }
        .why-us::before {
            content:'';
            position:absolute;
            top:-200px; right:-200px;
            width:700px; height:700px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(91,124,153,.18) 0%, transparent 70%);
            pointer-events:none;
        }

        .why-us-inner {
            display:grid;
            grid-template-columns:2fr 1fr;
            gap:80px;
            align-items:center;
        }
        .why-us-text h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:#fff;
            margin-bottom:20px;
            text-align: left;
        }
        .why-us-text h2 em { font-style:italic; color:var(--gold); }
        .why-us-text > p { color:#bbb; margin-bottom:40px; font-size:1rem; }

        .why-pillars {
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:20px;
            margin-bottom:40px;
        }
        .pillar {
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
            border-radius:var(--radius);
            padding:24px;
            transition:background .3s;
        }
        .pillar:hover { background:rgba(255,255,255,.09); }
        .pillar-num {
            font-size:2.2rem;
            font-weight:800;
            font-family:'Playfair Display',serif;
            color:var(--accent-purple);
            line-height:1;
            margin-bottom:8px;
        }
        .pillar h4 { color:#fff; font-size:1rem; margin-bottom:8px; }
        .pillar p { color:#999; font-size:.88rem; margin:0; }

        .why-us-visual { position:relative; }

        /* ═══════════════════════════════════════════
           TESTIMONIALS V2
        ═══════════════════════════════════════════ */
        .tv2-section {
            background: var(--bg-light);
        }

        .tv2-section .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
            position: relative;
        }

        .tv2-section .section-head .section-label {
            position: absolute;
            top: -71px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 5.5rem;
            opacity: 0.06;
            letter-spacing: 4px;
            white-space: nowrap;
            z-index: 0;
            color: #5B7C99;
        }

        .tv2-section .section-head h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .tv2-section .section-head p {
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .tv2-carousel {
            overflow: hidden;
            position: relative;
        }

        .tv2-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(.2,.9,.2,1);
            will-change: transform;
        }

        .tv2-slide {
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            padding: 0 4px;
        }

        .tv2-card {
            display: flex;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(26,42,68,.08);
            transition: transform .3s, box-shadow .3s;
        }

        .tv2-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(26,42,68,.12);
        }

        .tv2-card-image {
            flex: 0 0 250px;
            background: linear-gradient(135deg, #e8dfd2, #d9cdbf);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .tv2-card-image::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(91,124,153,.1);
        }

        .tv2-card-image img {
            width: 200px;
            height: auto;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 15px 30px rgba(26,42,68,.35);
            position: relative;
            z-index: 1;
            transition: transform .3s;
        }

        .tv2-card:hover .tv2-card-image img {
            transform: translateY(-4px);
        }

        .tv2-card-content {
            flex: 1;
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tv2-stars {
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .tv2-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .tv2-detail {
            color: var(--text-light);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .tv2-author-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .tv2-author-info strong {
            display: block;
            color: var(--primary-dark);
            font-size: 0.92rem;
        }

        .tv2-author-info span {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        .tv2-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tv2-tag {
            background: #e8dfd2;
            color: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }

        .tv2-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 48px;
        }

        .tv2-arrow {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #d4cfc7;
            cursor: pointer;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s;
            color: var(--primary-dark);
        }

        .tv2-arrow:hover {
            background: var(--accent-purple);
            border-color: var(--accent-purple);
            color: #fff;
        }

        .tv2-dots {
            display: flex;
            gap: 8px;
        }

        .tv2-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            transition: background .25s, transform .25s;
        }

        .tv2-dot.active {
            background: var(--accent-purple);
            transform: scale(1.4);
        }

        /* ═══════════════════════════════════════════
           CTA SCATTER
        ═══════════════════════════════════════════ */
        .cta-scatter {
            position: relative;
            background: var(--primary-dark);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 100px 0;
        }

        .cta-scatter-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .cta-scatter::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26,42,68,0.80);
            z-index: 1;
        }

        .cta-scatter-content {
            position: relative;
            z-index: 4;
            text-align: center;
            max-width: 650px;
            padding: 0 24px;
        }

        .cta-scatter-label {
            display: inline-block;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.15);
            color: #fff;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding: 8px 22px;
            border-radius: 50px;
            margin-bottom: 28px;
            text-transform: uppercase;
        }

        .cta-scatter-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
            text-align: center;
        }

        .cta-scatter-title em {
            font-style: italic;
            color: var(--gold);
        }

        .cta-scatter-desc {
            color: rgba(255,255,255,.65);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .cta-scatter-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        .cta-scatter-outline {
            display: inline-block;
            padding: 13px 30px;
            border: 2px solid rgba(255,255,255,.3);
            color: #fff;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: border-color .3s, background .3s;
        }

        .cta-scatter-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,.08);
            color: #fff;
        }

        /* ═══════════════════════════════════════════
           6. GENRES SECTION
        ═══════════════════════════════════════════ */
        .genres-section { background:var(--white); }
        .genres-section .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position: relative;
            overflow: visible;
        }
        .genres-section .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: #5B7C99;
        }
        .genres-section .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
        }
        .genres-section .section-head p { color:var(--text-light); font-size:1.05rem; }

        .genres-grid {
            display:grid;
            grid-template-columns:repeat(3, 1fr);
            gap:24px;
        }
        .genre-card {
            position:relative;
            border-radius:var(--radius);
            overflow:hidden;
            height:280px;
            cursor:pointer;
        }
        .genre-bg {
            position:absolute;
            inset:0;
            background-size:cover;
            background-position:center;
            transition:transform .5s ease;
        }
        .genre-card:hover .genre-bg { transform:scale(1.06); }
        .genre-overlay {
            position:absolute;
            inset:0;
            background:linear-gradient(to top, rgba(26,42,68,.9) 0%, rgba(26,42,68,.3) 60%, transparent 100%);
        }
        .genre-content {
            position:absolute;
            bottom:0; left:0; right:0;
            padding:28px;
        }
        .genre-content h3 {
            font-family:'Playfair Display',serif;
            font-size:1.5rem;
            color:#fff;
            margin-bottom:8px;
        }
        .genre-content p { color:rgba(255,255,255,.75); font-size:.88rem; margin:0; }
        .genre-arrow {
            position:absolute;
            top:24px; right:24px;
            width:36px; height:36px;
            border-radius:50%;
            background:rgba(255,255,255,.15);
            display:flex; align-items:center; justify-content:center;
            color:#fff;
            font-size:1.1rem;
            opacity:0;
            transition:opacity .3s, background .3s;
        }
        .genre-card:hover .genre-arrow { opacity:1; background:var(--accent-purple); }

        /* Genre backgrounds */
        .genre-nonfiction .genre-bg { background:linear-gradient(135deg,#1A2A44,#2d4a6e); }
        .genre-memoir .genre-bg { background:linear-gradient(135deg,#1a3350,#2b5278); }
        .genre-business .genre-bg { background:linear-gradient(135deg,#1a2a44,#3a5a7a); }
        .genre-selfhelp .genre-bg { background:linear-gradient(135deg,#2a1a40,#5B7C99); }
        .genre-fiction .genre-bg { background:linear-gradient(135deg,#2c1a1a,#6b4040); }
        .genre-childrens .genre-bg { background:linear-gradient(135deg,#1a2a50,#3a5a80); }

        /* Genre backgrounds with images */
        .genre-memoir .genre-bg {
            background: url('images/2148373805.jpg') center/cover no-repeat;
        }
        .genre-business .genre-bg {
            background: url('images/top-view-office-elements_1921-144.jpg') center/cover no-repeat;
        }
        .genre-selfhelp .genre-bg {
            background: url('images/bookworm-having-breakfast_1098-16977.jpg') center/cover no-repeat;
        }
        .genre-fiction .genre-bg {
            background: url('images/front-view-man-reading-book_23-2149744695.jpg') center/cover no-repeat;
        }
        .genre-childrens .genre-bg {
            background: url('images/school-children-library-reading-books-doing-homework-prepare-school-project-lessons_98296-10397.jpg') center/cover no-repeat;
        }
        .genre-nonfiction .genre-bg {
            background: url('images/2149082207.jpg') center/cover no-repeat;
        }

        /* ═══════════════════════════════════════════
           7. FAQ SECTION
        ═══════════════════════════════════════════ */
        .faq-section { background:var(--bg-section); }
        .faq-section .section-head {
            text-align:center;
            max-width:680px;
            margin:0 auto 64px;
            position: relative;
            overflow: visible;
        }
        .faq-section .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: #5B7C99;
        }
        .faq-section .section-head h2 {
            font-family:'Playfair Display',serif;
            font-size:2.8rem;
            color:var(--primary-dark);
            margin-bottom:16px;
        }
        .faq-section .section-head p { color:var(--text-light); font-size:1.05rem; }

        .faq-inner {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:60px;
            align-items:start;
        }
        .faq-list { display:flex; flex-direction:column; gap:12px; }
        .faq-item {
            background:#fff;
            border-radius:var(--radius);
            overflow:hidden;
            box-shadow:0 2px 12px rgba(26,42,68,.06);
            border:1px solid #eee;
        }
        .faq-question {
            display:flex;
            justify-content:space-between;
            align-items:center;
            padding:22px 26px;
            cursor:pointer;
            font-weight:600;
            color:var(--primary-dark);
            font-size:.98rem;
            transition:background .2s;
        }
        .faq-question:hover { background:#f5f0e8; }
        .faq-icon {
            width:28px; height:28px;
            border-radius:50%;
            background:#e8dfd2;
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
            transition:background .3s, transform .3s;
            color:var(--accent-purple);
            font-size:1.2rem;
            font-weight:400;
        }
        .faq-item.open .faq-icon { background:var(--accent-purple); color:#fff; transform:rotate(45deg); }
        .faq-answer {
            max-height:0;
            overflow:hidden;
            transition:max-height .4s ease, padding .3s;
            padding:0 26px;
            color:var(--text-light);
            font-size:.93rem;
            line-height:1.8;
        }
        .faq-item.open .faq-answer { max-height:300px; padding:0 26px 22px; }

        .faq-cta-card {
            background:var(--primary-dark);
            border-radius:var(--radius);
            padding:50px 40px;
            text-align:center;
            position:sticky;
            top:30px;
        }
        .faq-cta-card h3 {
            font-family:'Playfair Display',serif;
            font-size:1.8rem;
            color:#fff;
            margin-bottom:14px;
        }
        .faq-cta-card p { color:#aaa; margin-bottom:28px; font-size:.95rem; }
        .faq-cta-card .btn { width:100%; text-align:center; margin-bottom:12px; }
        .faq-cta-card .btn-outline-white {
            display:block;
            width:100%;
            text-align:center;
            padding:13px;
            border:2px solid rgba(255,255,255,.25);
            color:#fff;
            border-radius:6px;
            font-weight:600;
            font-size:.95rem;
            transition:border-color .3s;
        }
        .faq-cta-card .btn-outline-white:hover { border-color:#fff; }

        /* ═══════════════════════════════════════════
           SUBSCRIBE / NEWSLETTER
        ═══════════════════════════════════════════ */
        .subscribe-section {
            background:var(--primary-dark);
            padding:50px 0 90px 0;
            position:relative;
            overflow:hidden;
        }
        .subscribe-section::after {
            content:'';
            position:absolute;
            bottom:-160px; left:-160px;
            width:500px; height:500px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(91,124,153,.2) 0%, transparent 70%);
            pointer-events:none;
        }
        .subscribe-inner {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:80px;
            align-items:center;
            position:relative; z-index:1;
        }
        .subscribe-text .section-label { color:var(--gold); }
        .subscribe-text h2 {
            font-family:'Playfair Display',serif;
            font-size:2.6rem;
            color:#fff;
            text-align: left;
            margin-bottom:16px;
        }
        .subscribe-text p { color:#aaa; font-size:1rem; margin-bottom:24px; }
        .subscribe-perks { list-style:none; display:flex; flex-direction:column; gap:10px; }
        .subscribe-perks li { display:flex; gap:10px; align-items:center; color:#ccc; font-size:.9rem; }
        .perk-check {
            width:20px; height:20px;
            background:var(--accent-purple);
            border-radius:50%;
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
        }
        .perk-check::after { content:'✓'; color:#fff; font-size:.7rem; font-weight:700; }

        .subscribe-form-wrap {
            background:rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.1);
            border-radius:var(--radius);
            padding:44px 40px;
        }
        .subscribe-form-wrap h3 { color:#fff; font-size:1.4rem; margin-bottom:8px; }
        .subscribe-form-wrap p { color:#aaa; font-size:.9rem; margin-bottom:28px; }
        .form-row { display:flex; flex-direction:column; gap:14px; }
        .form-control {
            width:100%;
            padding:14px 18px;
            background:rgba(255,255,255,.08);
            border:1px solid rgba(255,255,255,.15);
            border-radius:8px;
            color:#fff;
            font-size:.95rem;
            outline:none;
            transition:border-color .25s;
        }
        .form-control::placeholder { color:rgba(255,255,255,.4); }
        .form-control:focus { border-color:var(--accent-purple); }
        .form-control option { background:#1A2A44; color:#fff; }
        .subscribe-form-wrap .btn { width:100%; text-align:center; padding:15px; }
        .form-note { color:rgba(255,255,255,.35); font-size:.8rem; text-align:center; margin-top:10px; }

        /* Footer styles moved to site-footer.css */

        /* ═══════════════════════════════════════════
           BOOKS HORIZONTAL MARQUEE STRIP
        ═══════════════════════════════════════════ */
        .books-marquee-strip {
            background: var(--primary-dark);
            padding: 70px 0 0;
            overflow: hidden;
            width: 100%;
        }

        .books-marquee-track {
            display: flex;
            gap: 20px;
            animation: marquee-left 40s linear infinite;
            width: max-content;
        }

        .books-marquee-track img {
            width: 140px;
            height: 210px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,.4);
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .books-marquee-track img:hover {
            transform: scale(1.05);
        }

        @keyframes marquee-left {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Hero top title enhanced */
        .hero-top-title {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--accent-purple);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 14px;
            font-weight: 600;
            display: inline-block;
        }

        /* Inline email form */
        .hero-inline-form {
            display: flex;
            align-items: center;
            max-width: 500px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(26,42,68,.12);
            margin-top: 10px;
        }

        .hero-email-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid #d4cfc7;
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.25s;
        }

        .hero-email-input::placeholder {
            color: #999;
        }

        .hero-email-input:focus {
            border-color: var(--accent-purple);
        }

        .hero-form-btn {
            padding: 16px 28px;
            background: var(--accent-purple);
            color: #fff;
            border: 2px solid var(--accent-purple);
            border-radius: 0 5px 5px 0;
            font-size: 0.95rem;
            font-weight: 700;
            font-family: 'Open Sans', sans-serif;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.3s, transform 0.2s;
        }

        .hero-form-btn:hover {
            background: #4a6a85;
            border-color: #4a6a85;
        }

        span.section-label {
            font-family: 'Playfair Display';
        }

        .service-link {
            display:inline-block;
            margin-left:15px;
            font-size:14px;
            color:#ffffff;
            text-decoration:none;
            font-weight:500;
        }
        .service-link:hover {
            text-decoration:underline;
            color: white;
        }

        label {
            color: black;
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════ */
        @media (max-width:1100px) {
            .solutions-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-top { grid-template-columns:1fr 1fr; }
        }
        @media (max-width:900px) {
            .service-panel.active, .why-us-inner, .subscribe-inner, .faq-inner { grid-template-columns:1fr; flex-direction:column; }
            .service-panel.active { flex-direction:column; }
            .genres-grid { grid-template-columns:1fr 1fr; }
            .footer-top { grid-template-columns:1fr 1fr; }
            .why-us-inner { display:flex; flex-direction:column; }
            .why-pillars { grid-template-columns:repeat(2, 1fr); }
        }
        @media (max-width:768px) {
            h1 { font-size: 2.2rem; }
            .footer-top { grid-template-columns:1fr; }
            .section-head .section-label {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                transform: none !important;
                font-size: 0.8rem !important;
                opacity: 1 !important;
                letter-spacing: 2px !important;
                display: inline-block !important;
            }
            h2 {
                font-size: 1.8rem !important;
            }
        }
        @media (max-width:600px) {
            .solutions-grid { grid-template-columns: repeat(2, 1fr); }
            .genres-grid { grid-template-columns:1fr; }
            .footer-top { grid-template-columns:1fr; }
            .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
            .why-pillars { grid-template-columns:1fr; }
            .hero-inline-form {
                flex-direction: column;
                border-radius: 5px;
            }
            .hero-email-input {
                border-right: 2px solid #d4cfc7;
                border-radius: 5px 5px 0 0;
                border-bottom: none;
                width: 100%;
            }
            .hero-form-btn {
                border-radius: 0 0 5px 5px;
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .hero { padding: 20px 0 40px; }
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            .hero-text h1 { font-size: 2.5rem; }
            .hero-text p { font-size: 0.95rem; }
            .hero-image { height: 400px; }
            .hero-inline-form { max-width: 100%; margin: 0 auto; }
            .logo-grid.hero-logo-grid { justify-content: center; margin: 15px auto 0; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-cta { flex-direction: column; gap: 20px; text-align: center; }
        }

        @media (max-width: 768px) {
            .hero { padding: 15px 0 30px; }
            .hero-text h1 { font-size: 2rem; }
            .hero-image { display: none; }
            .logo-grid.hero-logo-grid { gap: 8px; }
            .logo-item { width: 60px; height: 60px; }
        }

        @media (max-width: 480px) {
            .hero-text h1 { font-size: 1.7rem; }
            .hero-text p { font-size: 0.88rem; padding: 0 10px; }
            .logo-item { width: 50px; height: 50px; }
        }

        @media (max-width: 768px) {
            .cta-scatter { min-height: 600px; padding-bottom: 60px; }
            .cta-scatter-title { font-size: 2.2rem; }
        }

        @media (max-width: 480px) {
            .cta-scatter-title { font-size: 1.8rem; }
        }

        @media (max-width: 992px) {
            .tv2-slide { grid-template-columns: 1fr; gap: 20px; }
            .tv2-card-image { flex: 0 0 160px; }
        }

        @media (max-width: 600px) {
            .tv2-card { flex-direction: column; }
            .tv2-card-image { flex: none; height: 220px; padding: 20px; }
            .tv2-card-image img { width: 120px; height: 180px; }
            .tv2-quote { font-size: 1rem; }
        }



        /* ═══════════════════════════════════════════
   PROPOSAL POPUP FORM - Dreamline Publishers
   Colors: Navy #1A2A44, Gold #C7A56B,
   Muted Blue #5B7C99, Cream #F8F5F0
═══════════════════════════════════════════ */

/* Overlay */
.pp-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,42,68,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pp-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal container */
.pp-modal {
    display: flex;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26,42,68,.35);
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1);
}

.pp-overlay.active .pp-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.pp-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.25s, color 0.25s;
}

.pp-close:hover {
    background: #e8dfd2;
    color: #5B7C99;
}

/* ── LEFT PANEL: BRANDING ── */
.pp-left {
    flex: 0 0 320px;
    background: linear-gradient(160deg, #1A2A44 0%, #243a56 50%, #2d4a6e 100%);
    padding: 48px 36px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.pp-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,124,153,.25) 0%, transparent 70%);
    pointer-events: none;
}

.pp-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,165,107,.15) 0%, transparent 70%);
    pointer-events: none;
}

.pp-left-content {
    position: relative;
    z-index: 1;
}

.pp-badge-label {
    display: inline-block;
    background: rgba(91,124,153,.25);
    border: 1px solid rgba(91,124,153,.3);
    color: #9bbad4;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pp-left-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pp-left-desc {
    color: rgba(255,255,255,.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Trust items */
.pp-trust-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.75);
    font-size: 0.85rem;
    font-weight: 600;
}

.pp-trust-icon {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-trust-icon img {
    filter: brightness(0) invert(1);
}

/* ── RIGHT PANEL: FORM ── */
.pp-right {
    flex: 1;
    padding: 40px 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.pp-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A2A44;
    margin-bottom: 6px;
}

.pp-form-subtitle {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 28px;
}

/* ── STEP INDICATORS ── */
.pp-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.pp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.3s;
}

.pp-step.active {
    color: #5B7C99;
}

.pp-step.completed {
    color: #22c55e;
}

.pp-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #999;
    transition: all 0.3s;
}

.pp-step.active span {
    background: #5B7C99;
    color: #fff;
}

.pp-step.completed span {
    background: #22c55e;
    color: #fff;
}

.pp-step-line {
    flex: 1;
    height: 2px;
    background: #eee;
    margin: 0 12px;
    position: relative;
    overflow: hidden;
}

.pp-step-line.filled {
    background: #5B7C99;
}

/* ── STEP PANELS ── */
.pp-step-panel {
    display: none;
}

.pp-step-panel.active {
    display: block;
    animation: ppFadeIn 0.3s ease;
}

@keyframes ppFadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── FORM FIELDS ── */
.pp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.pp-field {
    display: flex;
    flex-direction: column;
}

.pp-field-full {
    margin-bottom: 14px;
}

.pp-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.pp-input,
.pp-select,
.pp-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #d4cfc7;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pp-input:focus,
.pp-select:focus,
.pp-textarea:focus {
    border-color: #5B7C99;
    box-shadow: 0 0 0 4px rgba(91,124,153,.08);
}

.pp-input::placeholder,
.pp-textarea::placeholder {
    color: #aaa;
}

.pp-select {
    cursor: pointer;
    appearance: auto;
}

.pp-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ── BUDGET BUTTONS ── */
.pp-budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-budget-btn {
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid #d4cfc7;
    background: transparent;
    color: #666;
    font-size: 0.82rem;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-budget-btn.selected,
.pp-budget-btn:hover {
    background: #5B7C99;
    border-color: #5B7C99;
    color: #fff;
}

/* ── CHECKBOX ── */
.pp-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: #888;
}

.pp-checkbox-row input[type=checkbox] {
    margin-top: 3px;
    accent-color: #5B7C99;
    flex-shrink: 0;
}

/* ── BUTTONS ── */
.pp-btn-next,
.pp-btn-submit {
    width: 100%;
    padding: 14px;
    background: #5B7C99;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 8px;
}

.pp-btn-next:hover,
.pp-btn-submit:hover {
    background: #4a6a85;
    transform: translateY(-1px);
}

.pp-btn-back {
    padding: 14px 24px;
    background: transparent;
    color: #888;
    border: 2px solid #d4cfc7;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.pp-btn-back:hover {
    border-color: #5B7C99;
    color: #5B7C99;
}

.pp-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.pp-btn-row .pp-btn-next,
.pp-btn-row .pp-btn-submit {
    flex: 1;
    margin-top: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .pp-modal {
        flex-direction: column;
        max-height: 95vh;
    }

    .pp-left {
        flex: none;
        padding: 30px 24px;
    }

    .pp-left-title {
        font-size: 1.5rem;
    }

    .pp-trust-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pp-trust-item {
        font-size: 0.78rem;
    }

    .pp-right {
        padding: 28px 24px;
    }

    .pp-row {
        grid-template-columns: 1fr;
    }

    .pp-btn-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pp-left {
        padding: 24px 20px;
    }

    .pp-left-desc {
        display: none;
    }

    .pp-right {
        padding: 24px 18px;
    }

    .pp-steps {
        font-size: 0.72rem;
    }
}

label {
    color: black;
}