/* publishing services */

/* ── EXTRA PAGE STYLES (on top of existing globals) ── */

/* ── HERO ── */
.svc-hero-wrapper {
    padding: 180px 0 90px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #0b0f17;
}
.container {
            max-width: 1450px;
            width: 100%; }

.svc-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.15;
    color: #ffffff; letter-spacing: -1.5px;
    margin-bottom: 22px; max-width: 1450px; margin-left: auto; margin-right: auto;
}
.svc-hero-title .gradient-text {
    background: linear-gradient(to right, #00c6ff, #ff7ad9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.svc-hero-subtitle {
    font-size: 1.15rem; color: #b3b3b3;
    max-width: 680px; margin: 0 auto 32px; line-height: 1.75;
}
.svc-hero-subtitle strong { color: #dbdbdb; }

/* Hero CTA buttons */
.hero-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-gradient {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 1rem; font-weight: 700;
    color: #fff; text-decoration: none; border-radius: 999px;
    background: linear-gradient(135deg, #00c6ff 0%, #ff7ad9 100%);
    box-shadow: 0 10px 25px rgba(0,198,255,0.25);
    transition: all 0.3s ease;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(255,122,217,0.35); color:#fff; }
.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 1rem; font-weight: 700;
    color: #374151; text-decoration: none; border-radius: 999px;
    background: rgba(255,255,255,0.85); border: 1.5px solid #e5e7eb;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-outline-dark:hover { transform: translateY(-2px); border-color: #00c6ff; color:#0369a1; box-shadow: 0 8px 20px rgba(0,198,255,0.15); }

/* Trust pills row */
.trust-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-pill {
    background: rgba(255,255,255,0.9); border: 1px solid #e5e7eb;
    color: #374151; padding: 10px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px); transition: transform 0.2s;
}
.trust-pill:hover { transform: translateY(-2px); }
.trust-pill .icon { font-size: 15px; }

/* ── PROCESS STRIP ── */
.process-strip {
    background: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(229,231,235,0.6);
    padding: 22px 0;
    backdrop-filter: blur(16px);
    position: relative; z-index: 2;
}
.process-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.process-step { display: flex; align-items: center; gap: 9px; padding: 6px 18px; }
.process-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #ff7ad9);
    color: #fff; font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 3px 8px rgba(0,198,255,0.3);
}
.process-label { font-size: 13px; font-weight: 600; color: #374151; }
.process-sep { color: #d1d5db; font-size: 16px; padding: 0 4px; }
@media(max-width:600px){ .process-sep { display:none; } .process-step { padding: 5px 10px; } }

/* ── SECTION HEADERS ── */
.svc-section { padding: 70px 0 20px; position: relative; z-index: 2; }
.svc-section-title {
    text-align: center; margin-bottom: 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: #111827; letter-spacing: -0.5px;
}
.svc-section-sub {
    text-align: center; color: #64748b; font-size: 1.05rem;
    max-width: 600px; margin: 0 auto 44px; line-height: 1.7;
}
.gradient-underline {
    display: inline;
    background: linear-gradient(to right, #00c6ff, #ff7ad9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── SERVICE CARDS GRID ── */
.services-row {
    display: flex; flex-wrap: wrap; gap: 22px; justify-content: center;
}
.svc-card-wrap { flex: 1 1 300px; max-width: 380px; }

/* Extends .tool-card */
.svc-card-inner {
    display: block; text-decoration: none; height: 100%;
    position: relative; overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 0;
}
.svc-card-inner:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.97);
    box-shadow: 0 24px 50px rgba(0,0,0,0.1);
    border-color: #fff;
}

/* Coloured top accent bar */
.card-accent-bar { height: 4px; width: 100%; border-radius: 24px 24px 0 0; }

.svc-card-body { padding: 30px 26px 22px; }
.svc-icon-wrap {
    width: 62px; height: 62px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin-bottom: 18px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.svc-card-inner:hover .svc-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.svc-card-cat {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 8px;
}
.svc-card-title { font-size: 1.25rem; font-weight: 800; color: #111827; margin-bottom: 10px; line-height: 1.25; }
.svc-card-desc { font-size: 14.5px; color: #6b7280; line-height: 1.65; margin-bottom: 16px; }

/* Feature list */
.svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.svc-feat-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: #475569; line-height: 1.5; }
.svc-feat-list li::before { content: '✓'; color: #10b981; font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* Tags */
.svc-tag-row { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-chip {
    font-size: 10.5px; font-weight: 600; padding: 3px 10px;
    border-radius: 20px; border: 1px solid #e5e7eb;
    color: #6b7280; background: #f9fafb;
}

/* Card footer */
.svc-card-footer {
    padding: 14px 26px 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.svc-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: #0369a1;
    text-decoration: none; transition: gap 0.2s;
}
.svc-card-inner:hover .svc-card-cta { gap: 10px; }
.svc-card-badge {
    font-size: 10.5px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}

/* Featured card (full width) */
.svc-card-featured {
    display: grid; grid-template-columns: 1fr 1.1fr;
    border-radius: 24px; overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-decoration: none; color: inherit;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    margin-bottom: 22px;
}
.svc-card-featured:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,0.12); }
@media(max-width:720px){ .svc-card-featured { grid-template-columns: 1fr; } }
.featured-left { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.featured-right {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px; display: flex; flex-direction: column;
    justify-content: center; gap: 18px;
    position: relative; overflow: hidden;
}
.featured-right::before {
    content: '🎨';
    position: absolute; top: -20px; right: -10px;
    font-size: 200px; opacity: 0.06; line-height: 1;
}
.feat-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: #fbbf24; background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.3);
    padding: 5px 12px; border-radius: 20px; width: fit-content;
}
.featured-right h3 { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.3; }
.featured-right p { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.featured-right-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #00c6ff, #ff7ad9);
    color: #fff; padding: 12px 24px; border-radius: 30px;
    font-weight: 700; font-size: 13px; text-decoration: none;
    width: fit-content; transition: all 0.3s; box-shadow: 0 8px 20px rgba(0,198,255,0.25);
}
.featured-right-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,122,217,0.35); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.why-card {
    background: rgba(255,255,255,0.72); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.85); border-radius: 20px;
    padding: 28px; display: flex; flex-direction: column; gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.why-icon-wrap {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.why-title { font-size: 1rem; font-weight: 800; color: #111827; }
.why-desc { font-size: 14px; color: #6b7280; line-height: 1.65; }

/* ── COMPARISON TABLE ── */
.compare-wrap {
    background: rgba(255,255,255,0.82); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9); border-radius: 20px;
    overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.compare-table th:first-child { background: rgba(248,250,252,0.8); color: #6b7280; }
.compare-table th.col-others { background: rgba(248,250,252,0.8); color: #9ca3af; text-align: center; }
.compare-table th.col-us {
    text-align: center;
    background: linear-gradient(135deg, #00c6ff22, #ff7ad922);
    color: #0369a1;
}
.compare-table td { padding: 13px 20px; border-top: 1px solid rgba(229,231,235,0.5); vertical-align: middle; }
.compare-table td:first-child { font-weight: 600; color: #374151; background: rgba(248,250,252,0.5); }
.compare-table td.col-others { text-align: center; color: #d1d5db; font-size: 17px; }
.compare-table td.col-us { text-align: center; font-size: 17px; }
.compare-table tr:hover td { background: rgba(0,198,255,0.03); }

/* ── TESTIMONIALS ── */
.testimonials-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card {
    background: rgba(255,255,255,0.72); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.85); border-radius: 20px;
    padding: 28px; display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.07); }
.testi-stars { font-size: 14px; letter-spacing: 2px; }
.testi-text {
    font-size: 15px; color: #475569; line-height: 1.7; font-style: italic;
    position: relative; padding-left: 20px;
}
.testi-text::before {
    content: '"'; position: absolute; left: 0; top: -6px;
    font-size: 42px; color: #e0e7ff; line-height: 1; font-style: normal;
    font-family: Georgia, serif;
}
.testi-author { padding-top: 14px; border-top: 1px solid rgba(229,231,235,0.5); }
.testi-name { font-size: 15px; font-weight: 800; color: #111827; }
.testi-role { font-size: 12px; color: #9ca3af; margin-top: 2px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.9); border-radius: 16px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.faq-q {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 700; color: #111827;
    user-select: none; gap: 16px; transition: background 0.2s;
}
.faq-q:hover { background: rgba(0,198,255,0.04); }
.faq-icon {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #00c6ff, #ff7ad9);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 400; transition: transform 0.3s;
}
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 24px; font-size: 15px; color: #475569; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a a { color: #0369a1; text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── STATS STRIP ── */
.stats-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px; padding: 48px 40px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px; margin-bottom: 0; position: relative; overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,198,255,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(255,122,217,0.12) 0%, transparent 60%);
}
.stat-block { text-align: center; position: relative; z-index: 2; }
.stat-num {
    font-size: 2.4rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #00c6ff, #ff7ad9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; line-height: 1.4; }

/* ── FINAL CTA ── */
.svc-final-cta {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9); border-radius: 24px;
    padding: 60px 40px; text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.svc-final-cta h2 { font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 14px; letter-spacing: -0.5px; }
.svc-final-cta p { font-size: 1.05rem; color: #64748b; max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ── SEO RICH TEXT ── */
.seo-rich-text { padding: 0 0 50px; }
.seo-rich-text h2 { font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: 12px; }
.seo-rich-text p { font-size: 15px; color: #6b7280; line-height: 1.8; margin-bottom: 12px; max-width: 900px; }

@media(max-width: 768px){
    .svc-hero-wrapper { padding: 150px 0 60px; }
    .featured-left, .featured-right { padding: 28px; }
    .stats-strip { padding: 36px 24px; gap: 20px; }
    .svc-final-cta { padding: 40px 24px; }
}


/* =========================================
   1. BACKGROUND ANIMATION (Blobs)
   ========================================= */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #ffffff;
}

.blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.8;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: #e0e7ff; animation-delay: 0s; } /* Soft Indigo */
.blob-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: #fae8ff; animation-delay: -5s; } /* Soft Pink */
.blob-3 { top: 40%; left: 40%; width: 40vw; height: 40vw; background: #ccfbf1; animation-delay: -10s; } /* Soft Teal */

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero-wrapper {
    padding: 150px 0 80px;
    position: relative;
    text-align: center;
}

.hero-title {
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111827;
    letter-spacing: -1px;
    font-size: 2.5rem; /* Fallback size */
}

.hero-subtitle, .hero-text p {
    color: #c6cacf;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 400;
}

.hero-text strong {
    color: #c6cacf;
    font-weight: 600;
}

/* Trust Badges */
.trust-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.05); }
.gradient-text{
  background: linear-gradient(to right, #00c6ff, #ff7ad9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   3. ADS STRIP
   ========================================= */
.ads-strip {
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 18px 0;
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
}

/* =========================================
   4. GLASS CARDS (Tools & Services)
   ========================================= */
.tool-card {
    display: block;
    text-decoration: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0; /* Content padding handled by .card-content */
}

.tool-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.card-content {
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.tool-icon { 
    font-size: 64px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}
.tool-card:hover .tool-icon { transform: scale(1.1); }

/* Text Styles inside Card */
.tool-title, .service-title { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #1f2937; 
    margin-bottom: 10px; 
}

.tool-desc-hover, .service-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
    opacity: 0.9;
}

.free-tag { 
    background: #ecfdf5; color: #059669; padding: 6px 14px; 
    border-radius: 20px; font-size: 0.75rem; font-weight: 700; 
    letter-spacing: 0.5px; margin-top: 20px; border: 1px solid #d1fae5;
}

/* =========================================
   5. CONTENT SECTIONS (Glass Panel)
   ========================================= */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
}

.text-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Detailed Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.detail-item h3 { font-size: 1.3rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.detail-item p { font-size: 1rem; color: #6b7280; line-height: 1.7; }

/* =========================================
   6. BUTTONS & FOOTER FIX
   ========================================= */
.cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 45px; font-size: 18px; font-weight: 700;
    color: #fff; text-decoration: none; border-radius: 999px;
    background: linear-gradient(135deg, #00c6ff 0%, #ff7ad9 100%);
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.3);
    transition: all .3s ease;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 122, 217, 0.4);
    color: #fff;
}

footer, .footer-area {
    position: relative;
    z-index: 99 !important;
    background-color: #fff;
}

.section { padding-bottom: 80px; }

/* =========================================
   7. ILLUSTRATION MODAL & CAROUSEL
   ========================================= */
.image-modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    overflow: hidden; background-color: rgba(0, 0, 0, 0.95);
    justify-content: center; align-items: center; backdrop-filter: blur(8px);
}
.image-modal.active { display: flex; }

.image-modal .prev, .image-modal .next {
    cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold; font-size: 24px; transition: all 0.3s ease;
    border-radius: 50%; z-index: 2002;
    background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none; -webkit-user-select: none;
}
.image-modal .next { right: 20px; }
.image-modal .prev { left: 20px; }
.image-modal .prev:hover, .image-modal .next:hover {
    background-color: rgba(255, 255, 255, 0.25); transform: translateY(-50%) scale(1.1);
}

.image-modal .close-btn {
    position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff;
    cursor: pointer; z-index: 2002; transition: transform 0.3s;
}
.image-modal .close-btn:hover { transform: rotate(90deg); color: #ff7ad9; }

.modal-carousel-track {
    position: relative; width: 100%; height: 90vh;
    display: flex; justify-content: center; align-items: center; perspective: 1000px;
}

.carousel-item {
    position: absolute; transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 85vh; max-width: 80vw; width: auto; height: auto;
    border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    opacity: 0; z-index: 1; transform: translateX(-50%) scale(0.6); left: 50%;
    background: transparent; display: block;
}
.carousel-item.active {
    opacity: 1; z-index: 10; transform: translateX(-50%) scale(1);
    filter: brightness(1); cursor: default;
}
.carousel-item.prev-slide {
    opacity: 0.6; z-index: 5; transform: translateX(-130%) scale(0.8);
    filter: brightness(0.4) blur(1px); cursor: pointer;
}
.carousel-item.next-slide {
    opacity: 0.6; z-index: 5; transform: translateX(30%) scale(0.8);
    filter: brightness(0.4) blur(1px); cursor: pointer;
}

/* =========================================
   8. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .glass-panel { padding: 40px 20px; }
    .hero-title { font-size: 2rem; }
    
    /* Carousel Mobile Fixes */
    .carousel-item { max-width: 90vw; max-height: 75vh; }
    .carousel-item.prev-slide { transform: translateX(-110%) scale(0.75); opacity: 0.5; }
    .carousel-item.next-slide { transform: translateX(10%) scale(0.75); opacity: 0.5; }
    .image-modal .prev, .image-modal .next { width: 40px; height: 40px; font-size: 18px; background: rgba(0,0,0,0.5); }
}


    /* ============================================================
   KIDILLUS — ILLUSTRATION GALLERY PAGE
   Professional UI · 2026 Edition · Complete CSS
   ============================================================ */

/* ── Prevent image drag/select ── */
img {
  -webkit-user-drag: none;
}
.card-thumbnails-box img,
.gallery-item img {
  user-select: none;
}
.collection-card { cursor: pointer; }

/* FIX: Ensure category link clicks work, but gallery item clicks open the modal */
.collection-card img { pointer-events: none; } 
.gallery-item img { pointer-events: auto; cursor: zoom-in; } 

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.gallery-hero {
  padding: 160px 60px 60px;
  border-bottom: 1px solid #f1f5f9;
  background: #0b0f17;
  position: relative;
  overflow: hidden;
}

/* Subtle background orb */
.gallery-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Category breadcrumb trail */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 16px;
}
.hero-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover { color: #6366f1; }
.hero-breadcrumb span { color: #6366f1; }

/* H1 */
.hero-content h1 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: white !important;
  margin: 0 0 14px;
}
.hero-content h1 em {
  font-style: normal;
  background: #00d4ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero descriptor */
.hero-content .hero-descriptor {
  font-size: 1rem;
  color: #c6cacf;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

/* Style filter pills */
.style-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.style-filter-pills a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.style-filter-pills a:hover {
  border-color: #6366f1;
  color: #6366f1;
  background: #f5f3ff;
}
.style-filter-pills a.active {
  background: linear-gradient(90deg, #6366f1, #a855f7);
  border-color: transparent;
  color: #fff;
}

/* CTA button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(0, 198, 255), rgb(255, 122, 217));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
  transition: all 0.3s ease;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,102,241,0.4);
  color: #fff;
}
.hero-cta-btn .btn-icon { font-size: 16px; }

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-top: 8px;
}
.back-btn:hover {
  background: #1e293b;
  transform: translateX(-2px);
  color: #fff;
}

/* Stats bar under hero */
.hero-stats-bar {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY COLLECTION GRID (Index View)
══════════════════════════════════════════════════════════ */
.collections-section-head {
  padding: 50px 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.collections-section-head h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  margin: 0;
}
.collections-section-head p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.collections-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 20px 60px 60px;
  width: 100%;
  box-sizing: border-box;
}

.collection-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.3s ease;
}
.collection-card:hover { transform: translateY(-4px); }

/* Card header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: capitalize;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.card-see-all {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #64748b;
  background: transparent;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.collection-card:hover .card-see-all {
  border-color: #6366f1;
  background: #6366f1;
  color: #fff;
}

/* Card count badge */
.card-count {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  font-weight: 600;
}

/* Thumbnail 2x2 grid */
.card-thumbnails-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.collection-card:hover .card-thumbnails-box {
  box-shadow: 0 8px 32px rgba(99,102,241,0.2);
}
.card-thumbnails-box > * {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}
.card-thumbnails-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.collection-card:hover .card-thumbnails-box img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════════════
   FULL GALLERY GRID (Category View)
══════════════════════════════════════════════════════════ */
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px 0;
}
.gallery-count-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}
.gallery-count-label strong {
  color: #0f172a;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  padding: 24px 60px 60px;
  width: 100%;
  box-sizing: border-box;
}

.gallery-item {
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Zoom icon on hover */
.gallery-item::after {
  content: '⊕';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Page-specific aspect ratios */
.formatting-page .gallery-item { aspect-ratio: 1 / 1.414; }
.book-cover-page .gallery-item { aspect-ratio: 2 / 3; }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX MODAL
══════════════════════════════════════════════════════════ */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.97);
  z-index: 999999 !important; /* 🔥 Isko 9999 se 999999 kardo */
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.image-modal.active { display: flex; }

/* Close button */
.close-btn {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s;
  z-index: 10001;
}
.close-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }

/* Prev / Next arrows */
.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  z-index: 10001;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.modal-nav:hover { background: rgba(255,255,255,0.2); }
.modal-nav.prev { left: 20px; }
.modal-nav.next { right: 20px; }

/* Carousel track */
.modal-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Active image */
.modal-carousel-track .carousel-item {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0; margin: auto; /* 🔥 YE LINE ADD KARO */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}
.modal-carousel-track .carousel-item.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.modal-carousel-track .carousel-item.prev-slide {
  transform: translateX(-55%) scale(0.8);
  opacity: 0.35;
  z-index: 5;
  cursor: pointer;
  filter: brightness(0.7);
}
.modal-carousel-track .carousel-item.next-slide {
  transform: translateX(55%) scale(0.8);
  opacity: 0.35;
  z-index: 5;
  cursor: pointer;
  filter: brightness(0.7);
}
.modal-carousel-track .carousel-item:not(.active):not(.prev-slide):not(.next-slide) {
  opacity: 0;
  pointer-events: none;
}

/* Counter */
.modal-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  z-index: 10001;
}

/* Dot indicator */
.modal-dots {
  position: fixed;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10001;
}
.modal-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.modal-dot.active {
  width: 20px;
  background: #fff;
}

/* ══════════════════════════════════════════════════════════
   SEO CONTENT SECTION
══════════════════════════════════════════════════════════ */
.seo-content-section {
  padding: 50px 60px;
  background: #fafbff;
  border-top: 1px solid #f1f5f9;
}
.seo-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.seo-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.seo-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #334155;
  margin: 24px 0 10px;
}
.seo-box p {
  color: #475569;
  line-height: 1.75;
  margin: 0 0 12px;
}
.seo-box ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
}
.seo-box ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.6;
}
.seo-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
}
.seo-box a {
  color: #6366f1;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(99,102,241,0.3);
}
.seo-box a:hover { border-bottom-color: #6366f1; }

/* Two-col grid inside SEO box */
.seo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0;
}
.seo-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
}

/* Info callout block */
.seo-callout {
  background: linear-gradient(135deg, #f5f3ff, #fdf4ff);
  border-left: 4px solid #a855f7;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.seo-callout p { margin: 0; font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   404 / ERROR STATE
══════════════════════════════════════════════════════════ */
.category-not-found {
  margin: 24px 60px;
  padding: 16px 20px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #fecaca;
}

/* ══════════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════════ */
.gallery-empty-state {
  text-align: center;
  padding: 80px 40px;
  color: #94a3b8;
}
.gallery-empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.gallery-empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
}
.gallery-empty-state p {
  font-size: 14px;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════
   TABLET (≤1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .collections-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 32px 48px;
  }
  .full-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 32px 48px;
  }
  .gallery-hero { padding: 130px 32px 48px; }
  .gallery-hero-inner { flex-direction: column; gap: 24px; }
  .hero-content h1 { font-size: 2rem; }
  .collections-section-head { padding: 40px 32px 16px; }
  .gallery-toolbar { padding: 20px 32px 0; }
  .seo-content-section { padding: 40px 32px; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE (≤768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .gallery-hero {
    padding: 110px 20px 36px;
  }
  .gallery-hero-inner {
    flex-direction: column;
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }
  .hero-content .hero-descriptor {
    font-size: 0.93rem;
  }
  .hero-stats-bar {
    gap: 20px;
  }
  .hero-stat strong { font-size: 1.2rem; }

  /* Collections */
  .collections-section-head {
    padding: 28px 20px 12px;
  }
  .collections-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 12px 20px 40px;
  }
  .card-title { font-size: 0.9rem; }
  .card-see-all {
    font-size: 10px;
    padding: 4px 9px;
  }
  .card-thumbnails-box { gap: 3px; }

  /* Gallery */
  .gallery-toolbar { padding: 16px 20px 0; }
  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 20px 40px;
  }
  .gallery-item { border-radius: 8px; }

  /* Nav arrows */
  .modal-nav { width: 38px; height: 38px; font-size: 16px; }
  .modal-nav.prev { left: 10px; }
  .modal-nav.next { right: 10px; }
  .close-btn { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 20px; line-height: 38px; }

  /* SEO */
  .seo-content-section { padding: 30px 20px; }
  .seo-box { padding: 24px 18px; }
  .seo-grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .seo-box h2 { font-size: 1.3rem; }

  /* Style links */
  .style-filter-pills { gap: 6px; }
  .style-filter-pills a { font-size: 11.5px; padding: 5px 11px; }
}

/* ══════════════════════════════════════════════════════════
   SMALL MOBILE (≤480px)    
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .gallery-hero { padding: 100px 16px 28px; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-stats-bar { gap: 16px; flex-wrap: wrap; }
  .collections-wrapper { grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px 16px 32px; }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px 16px 32px; }
  .back-btn { font-size: 11px; padding: 8px 14px; }
}



/* Help */ 
/* ============================================================
   KIDILLUS HELP CENTER v2.0 — REFINED DARK-ACCENT DESIGN
   ============================================================ */

:root {
    --ink:      #0a0f1e;
    --ink-2:    #1a2236;
    --ink-3:    #2a3650;
    --sky:      #00d4ff;
    --violet:   #b38bff;
    --rose:     #ff9bd7;
    --gold:     #ffd166;
    --mint:     #06d6a0;
    --red:      #ff6b6b;
    --soft-bg:  #f6f8fd;
    --card-bg:  #ffffff;
    --border:   #e4e9f2;
    --text:     #374151;
    --muted:    #6b7280;
    --radius:   16px;
    --shadow:   0 4px 24px rgba(10,15,30,0.08);
    --shadow-lg:0 12px 48px rgba(10,15,30,0.14);
    font-family: 'Sora', sans-serif;
}

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

/* ── HERO ── */
.hc-hero {
    background: var(--ink);
    padding: 160px 24px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 20% 50%, rgba(0,212,255,.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 80% 30%, rgba(179,139,255,.14) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 60% 90%, rgba(255,155,215,.10) 0%, transparent 70%);
}

.hc-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.hc-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hc-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hc-hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--sky), var(--violet), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hc-hero p {
    color: rgba(255,255,255,.6);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Search Bar */
.hc-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hc-search-wrap input {
    width: 100%;
    padding: 16px 56px 16px 52px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 15px;
    font-family: 'Sora', sans-serif;
    outline: none;
    transition: all .3s;
}

.hc-search-wrap input::placeholder { color: rgba(255,255,255,.35); }
.hc-search-wrap input:focus {
    border-color: var(--sky);
    background: rgba(255,255,255,.12);
    box-shadow: 0 0 0 4px rgba(0,212,255,.12);
}

.hc-search-wrap .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.4);
    font-size: 17px;
}

.hc-search-wrap .search-shortcut {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.35);
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Search Suggestions */
#searchSuggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 999;
    display: none;
}

.suggest-item {
    padding: 12px 18px;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s;
}

.suggest-item:hover { background: var(--soft-bg); }
.suggest-item .si-tag { font-size: 11px; color: var(--muted); background: var(--soft-bg); padding: 2px 8px; border-radius: 20px; margin-left: auto; }

/* Floating Stats */
.hc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hc-hero-stat {
    text-align: center;
}

.hc-hero-stat .num {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.hc-hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── QUICK CATEGORIES ── */
.hc-categories {
    background: var(--soft-bg);
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
}

.hc-categories-inner {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.cat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 14px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all .25s;
    text-align: center;
}

.cat-chip .icon-wrap {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform .25s;
}

.cat-chip:hover {
    border-color: var(--ink);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.cat-chip:hover .icon-wrap { transform: scale(1.1) rotate(-5deg); }
.cat-chip.active { border-color: var(--sky); background: rgba(0,212,255,.06); color: var(--ink); }

.cat-chip:nth-child(1) .icon-wrap { background: #fef3c7; }
.cat-chip:nth-child(2) .icon-wrap { background: #ede9fe; }
.cat-chip:nth-child(3) .icon-wrap { background: #d1fae5; }
.cat-chip:nth-child(4) .icon-wrap { background: #fee2e2; }
.cat-chip:nth-child(5) .icon-wrap { background: #dbeafe; }
.cat-chip:nth-child(6) .icon-wrap { background: #fce7f3; }
.cat-chip:nth-child(7) .icon-wrap { background: #ecfdf5; }
.cat-chip:nth-child(8) .icon-wrap { background: #fff7ed; }

/* ── LAYOUT ── */
.hc-layout {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 32px;
    padding: 40px 24px 80px;
    align-items: start;
}

/* ── SIDEBAR ── */
.hc-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
    overflow: hidden;
}

.sidebar-header {
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.sidebar-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c4cbd8;
    padding: 14px 20px 6px;
    display: block;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-item:hover {
    background: var(--soft-bg);
    color: var(--ink);
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(0,212,255,.08), transparent);
    color: var(--ink);
    border-left-color: var(--sky);
    font-weight: 600;
}

.nav-item .nav-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    background: var(--soft-bg);
}

.nav-item.active .nav-icon {
    background: rgba(0,212,255,.12);
}

.nav-item .nav-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    background: var(--gold);
    color: var(--ink);
    padding: 1px 7px;
    border-radius: 50px;
}

/* Support Dot */
.nav-item .live-dot {
    width: 7px; height: 7px;
    background: var(--mint);
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 0 3px rgba(6,214,160,.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(6,214,160,.2); }
    50% { box-shadow: 0 0 0 6px rgba(6,214,160,.05); }
}

/* Response Time */
.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--soft-bg);
}

.resp-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
}

.resp-time .green-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--mint);
    flex-shrink: 0;
}

/* ── CONTENT AREA ── */
.hc-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 700px;
    overflow: hidden;
}

.kb-section { display: none; animation: fadeSlide .35s ease-out; }
.kb-section.active { display: block; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Section Header */
.section-hero {
    padding: 48px 52px 36px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #f9fbff 0%, #f1f5fd 100%);
    position: relative;
    overflow: hidden;
}

.section-hero::after {
    content: attr(data-emoji);
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: .08;
    line-height: 1;
}

.section-hero .breadcrumb {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-hero p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 680px;
}

/* Content Body */
.section-body { padding: 44px 52px; }

/* Typography */
.section-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    color: var(--ink);
    margin: 44px 0 18px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.section-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 22px 0 10px;
}

.section-body p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-body ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.section-body ul li {
    padding: 12px 16px;
    background: var(--soft-bg);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-body ul li::before {
    content: '→';
    color: var(--sky);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.section-body ul li strong { color: var(--ink); }

/* Images */
.doc-img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin: 28px 0;
    box-shadow: var(--shadow);
}

/* Tip/Note Boxes */
.tip-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    padding: 18px 20px;
    border-radius: 10px;
    margin: 24px 0;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.7;
}

.tip-box a { color: #2563eb; font-weight: 600; }

.warn-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    padding: 18px 20px;
    border-radius: 10px;
    margin: 24px 0;
    font-size: 14px;
    color: #92400e;
    line-height: 1.7;
}

.success-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #10b981;
    padding: 18px 20px;
    border-radius: 10px;
    margin: 24px 0;
    font-size: 14px;
    color: #065f46;
    line-height: 1.7;
}

/* ── STYLE CARDS (Illustration) ── */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.style-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all .25s;
    position: relative;
    background: #fff;
    cursor: default;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky);
}

.style-card .sc-emoji { font-size: 34px; margin-bottom: 12px; display: block; }
.style-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.style-card .sc-price {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--sky);
    display: block;
    margin-bottom: 10px;
}

.style-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.style-card .sc-badge {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}

.sc-badge.popular  { background: var(--gold); color: var(--ink); }
.sc-badge.premium  { background: var(--violet); color: #fff; }
.sc-badge.new      { background: var(--mint); color: var(--ink); }

/* ── PROCESS STEPS ── */
.process-steps {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: linear-gradient(to bottom, var(--sky), var(--violet));
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}

.ps-num {
    counter-increment: step;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--sky);
}

.ps-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.ps-body p  { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── ORDER STATUS TRACKER ── */
.status-track {
    display: flex;
    gap: 0;
    margin: 24px 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.st-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 100px;
    position: relative;
}

.st-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.st-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--soft-bg);
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
}

.st-step.done .st-dot    { background: var(--ink); border-color: var(--ink); }
.st-step.active .st-dot  { background: var(--sky); border-color: var(--sky); box-shadow: 0 0 0 4px rgba(0,212,255,.2); }
.st-label { font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.3; }
.st-step.done .st-label, .st-step.active .st-label { color: var(--ink); }

/* ── PRICING TABLE ── */
.pricing-table {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin: 24px 0;
}

.pt-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--ink);
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px;
}

.pt-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    transition: background .15s;
}

.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: var(--soft-bg); }
.pt-row .pt-service { font-weight: 600; color: var(--ink); }
.pt-row .pt-price { font-weight: 700; color: var(--sky); font-family: 'DM Serif Display', serif; font-size: 17px; }
.pt-row .pt-time { color: var(--muted); }

/* ── FAQ ACCORDION ── */
.faq-list {     display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 800px;
    margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item.open { box-shadow: var(--shadow); }

.faq-q {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-q:hover { background: var(--soft-bg); }
.faq-q .faq-arrow { font-size: 12px; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-a-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.faq-item.open .faq-a { max-height: 400px; }

/* ── SUPPORT / CHAT SYSTEM ── */
.support-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 36px;
    border-bottom: 1px solid var(--border);
    background: var(--soft-bg);
}

.support-topbar h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .2s;
    font-family: 'Sora', sans-serif;
}

.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,15,30,.2); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft-bg);
    color: var(--ink);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all .2s;
    font-family: 'Sora', sans-serif;
}

.btn-secondary:hover { background: var(--border); }

.support-body { padding: 28px 36px; }

/* Ticket Cards */
.ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all .2s;
    gap: 14px;
}

.ticket-card:hover {
    border-color: var(--sky);
    box-shadow: 0 4px 16px rgba(0,212,255,.1);
    transform: translateX(4px);
}

.tc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--soft-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tc-info { flex: 1; min-width: 0; }
.tc-info h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-info p  { font-size: 12px; color: var(--muted); }

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.st-open     { background: #fef3c7; color: #b45309; }
.st-replied  { background: #dbeafe; color: #1d4ed8; }
.st-closed   { background: #d1fae5; color: #065f46; }
.st-pending  { background: #fce7f3; color: #9d174d; }

/* Chat UI */
.ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
    border-bottom: 1px solid var(--border);
    background: var(--soft-bg);
    flex-wrap: wrap;
    gap: 12px;
}

.th-info h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.th-info p  { font-size: 12px; color: var(--muted); }

.chat-wrap { padding: 24px 36px; }

.chat-area {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    scroll-behavior: smooth;
}

.chat-date-divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
}

.chat-date-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: var(--border);
}

.chat-date-divider span {
    background: var(--soft-bg);
    padding: 0 12px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.message { max-width: 78%; padding: 14px 18px; border-radius: 18px; font-size: 14px; line-height: 1.6; position: relative; }

.msg-user {
    align-self: flex-end;
    background: var(--ink);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msg-user .msg-time { color: rgba(255,255,255,.5); }

.msg-admin {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow);
}

.admin-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--sky);
    margin-bottom: 4px;
}

.msg-time {
    font-size: 10px;
    opacity: .6;
    margin-top: 6px;
    display: block;
    text-align: right;
}

.attach-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    background: rgba(255,255,255,.15);
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
}

.reply-zone {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.reply-zone:focus-within { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(0,212,255,.08); }

.reply-zone textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    resize: none;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    min-height: 100px;
    background: transparent;
}

.reply-zone-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--soft-bg);
}

.reply-hint { font-size: 12px; color: var(--muted); }

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    transition: all .2s;
}

.btn-send:hover { background: #0ea5e9; transform: scale(1.02); }
.btn-send:disabled { opacity: .5; cursor: not-allowed; }

/* Ticket Form */
.ticket-form { max-width: 680px; }

.form-group { margin-bottom: 22px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-label .req { color: var(--red); margin-left: 3px; }

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}

.form-control textarea { resize: vertical; }

select.form-control { appearance: none; cursor: pointer; }

/* Category Pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.cat-pill-btn {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Sora', sans-serif;
}

.cat-pill-btn:hover { border-color: var(--ink); color: var(--ink); }
.cat-pill-btn.selected { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── EMPTY STATES ── */
.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-state .es-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.empty-state p  { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* ── CTA BLOCK ── */
.cta-block {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    border-radius: 16px;
    padding: 36px;
    margin: 40px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(179,139,255,.15) 0%, transparent 70%);
}

.cta-block h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.cta-block p { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 22px; position: relative; }

.cta-block .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--sky), var(--violet));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(0,212,255,.3);
}

.cta-block .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,212,255,.4); }

/* ── FEATURE GRID ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.feature-card {
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    transition: all .25s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }

.feature-card .fc-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.feature-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hc-layout { grid-template-columns: 1fr; padding: 0 0 60px; }

    .hc-sidebar {
        position: sticky;
        top: 60px;
        z-index: 200;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 16px;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,.06);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hc-sidebar::-webkit-scrollbar { display: none; }
    .sidebar-header, .sidebar-section-label, .sidebar-footer, .nav-item .live-dot { display: none; }

    .nav-item {
        flex: 0 0 auto;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1.5px solid var(--border);
        font-size: 13px;
        border-left: 1.5px solid var(--border);
        white-space: nowrap;
    }

    .nav-item .nav-icon { width: 22px; height: 22px; font-size: 13px; background: none; }
    .nav-item.active { background: var(--ink); color: #fff; border-color: var(--ink); }
    .nav-item.active .nav-icon { background: none; }
    .nav-item .nav-badge { display: none; }

    .section-hero { padding: 28px 24px; }
    .section-hero::after { display: none; }
    .section-body { padding: 28px 24px; }
    .support-topbar, .ticket-header { padding: 16px 24px; }
    .support-body, .chat-wrap { padding: 20px 24px; }

    .hc-categories-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
    .hc-hero { padding: 90px 20px 100px; }
    .hc-hero-stats { gap: 20px; }
    .hc-categories-inner { grid-template-columns: repeat(2, 1fr); }
    .style-grid { grid-template-columns: 1fr 1fr; }
    .pt-head, .pt-row { grid-template-columns: 1fr; gap: 4px; }
    .pt-head .pt-time, .pt-row .pt-time { display: none; }
    .message { max-width: 90%; }
}
