/* ============================================
   CMS Public — Modern Vibrant Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --pub-bg: #fafbff;
    --pub-bg-alt: #f0f2f9;
    --pub-surface: #ffffff;
    --pub-text: #1a1a2e;
    --pub-text-secondary: #4a4a6a;
    --pub-text-muted: #8888a8;
    --pub-accent: #6c5ce7;
    --pub-accent-light: #a29bfe;
    --pub-accent-dark: #5a4bd1;
    --pub-gradient: linear-gradient(135deg, #6c5ce7, #a29bfe, #74b9ff);
    --pub-gradient-alt: linear-gradient(135deg, #6c5ce7 0%, #e17055 100%);
    --pub-success: #00cec9;
    --pub-border: #e8e8f0;
    --pub-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --pub-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --pub-radius: 12px;
    --pub-radius-lg: 20px;
    --pub-nav-bg: rgba(255, 255, 255, 0.85);
    --pub-footer-bg: #1a1a2e;
    --hero-overlay-start: rgba(108, 92, 231, 0.85);
    --hero-overlay-end: rgba(162, 155, 254, 0.8);
}

html.dark-mode body {
    --pub-bg: #0f0f1a;
    --pub-bg-alt: #1a1a2e;
    --pub-surface: #1e1e36;
    --pub-text: #f0f2f9;
    --pub-text-secondary: #a8a8c2;
    --pub-text-muted: #747494;
    --pub-border: #2d2d44;
    --pub-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --pub-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
    --pub-nav-bg: rgba(30, 30, 54, 0.85);
    --pub-footer-bg: #0a0a14;
    --hero-overlay-start: rgba(26, 26, 46, 0.92);
    --hero-overlay-end: rgba(15, 15, 26, 0.95);
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pub-bg);
    color: var(--pub-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--pub-accent);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--pub-accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Navigation ---------- */
.pub-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pub-nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pub-border);
    padding: 0 40px;
    transition: all 0.3s ease;
}

.pub-navbar.scrolled {
    box-shadow: var(--pub-shadow);
}

.pub-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.pub-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pub-text);
}

.pub-brand .brand-dot {
    width: 32px;
    height: 32px;
    background: var(--pub-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.pub-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.pub-nav-menu > li {
    position: relative;
}

.pub-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    color: var(--pub-text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--pub-radius);
    transition: all 0.3s ease;
}

.pub-nav-menu > li > a:hover,
.pub-nav-menu > li > a.active {
    color: var(--pub-accent);
    background: rgba(108, 92, 231, 0.06);
}

.pub-nav-menu > li > a .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.pub-nav-menu > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.pub-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--pub-surface);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    box-shadow: var(--pub-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 100;
}

.pub-nav-menu > li:hover > .pub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.pub-dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--pub-text-secondary);
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pub-dropdown li a:hover {
    background: rgba(108, 92, 231, 0.06);
    color: var(--pub-accent);
    padding-left: 20px;
}

/* Nested Dropdown */
.pub-dropdown li.dropdown-submenu {
    position: relative;
}

.pub-dropdown .pub-dropdown {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 2px;
}

.pub-dropdown li.dropdown-submenu:hover > .pub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pub-dropdown li.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pub-dropdown .sub-arrow {
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pub-dropdown li.dropdown-submenu:hover > a .sub-arrow {
    transform: translateX(3px);
}

/* Mobile Menu */
.pub-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pub-text);
    cursor: pointer;
    padding: 8px;
}

/* ---------- Hero Section ---------- */
.pub-hero {
    position: relative;
    padding: 100px 40px 80px;
    background: var(--pub-gradient);
    color: #fff;
    overflow: hidden;
}

.pub-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.pub-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.pub-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pub-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pub-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- Container ---------- */
.pub-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Sections ---------- */
.pub-section {
    padding: 80px 0;
}

.pub-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.pub-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 12px;
}

.pub-section-header p {
    font-size: 1rem;
    color: var(--pub-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.pub-section-header .section-line {
    width: 60px;
    height: 4px;
    background: var(--pub-gradient);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ---------- Article Cards ---------- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
}

.article-card {
    background: var(--pub-surface);
    border-radius: var(--pub-radius-lg);
    overflow: hidden;
    border: 1px solid var(--pub-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pub-shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.article-card .card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .card-thumb img {
    transform: scale(1.08);
}

.article-card .card-thumb .card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: rgba(108, 92, 231, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

.article-card .card-thumb .thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--pub-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.article-card .card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card .card-content h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-content h3 a {
    color: inherit;
}

.article-card .card-content h3 a:hover {
    color: var(--pub-accent);
}

.article-card .card-excerpt {
    font-size: 0.88rem;
    color: var(--pub-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--pub-text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--pub-border);
}

.article-card .card-meta .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card .card-meta .author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pub-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
}

/* ---------- Article Detail ---------- */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.article-detail .article-header {
    margin-bottom: 32px;
}

.article-detail .article-header .category-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--pub-accent);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.article-detail .article-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pub-text);
    margin-bottom: 16px;
}

.article-detail .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--pub-text-muted);
    font-size: 0.88rem;
}

.article-detail .article-meta i {
    margin-right: 4px;
}

.article-detail .article-thumb {
    width: 100%;
    border-radius: var(--pub-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.article-detail .article-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail .article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pub-text-secondary);
}

.article-detail .article-body h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--pub-text);
}

.article-detail .article-body h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
    color: var(--pub-text);
}

.article-detail .article-body p {
    margin-bottom: 16px;
}

.article-detail .article-body img {
    border-radius: var(--pub-radius);
    margin: 24px 0;
}

.article-detail .article-body blockquote {
    border-left: 4px solid var(--pub-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(108, 92, 231, 0.04);
    border-radius: 0 var(--pub-radius) var(--pub-radius) 0;
    font-style: italic;
    color: var(--pub-text-secondary);
}

/* ---------- Related Articles ---------- */
.related-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--pub-border);
}

.related-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--pub-text);
}

/* ---------- Page View ---------- */
.page-view {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-view h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--pub-text);
}

.page-view .page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pub-text-secondary);
}

.page-view .page-body p {
    margin-bottom: 16px;
}

/* ---------- Categories Filter ---------- */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.category-filter a {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--pub-border);
    color: var(--pub-text-secondary);
    transition: all 0.3s ease;
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--pub-accent);
    color: #fff;
    border-color: var(--pub-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

/* ---------- Footer ---------- */
.pub-footer {
    background: var(--pub-footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.pub-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.pub-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.pub-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pub-footer p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.pub-footer-links {
    list-style: none;
}

.pub-footer-links li {
    margin-bottom: 10px;
}

.pub-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.pub-footer-links a:hover {
    color: var(--pub-accent-light);
    padding-left: 4px;
}

.pub-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .pub-hero h1 { font-size: 2.4rem; }
    .articles-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .pub-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .pub-navbar { padding: 0 20px; }
    .pub-menu-toggle { display: block; }
    .pub-nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--pub-surface);
        border-bottom: 1px solid var(--pub-border);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--pub-shadow-lg);
    }
    .pub-nav-menu.show { display: flex; }
    .pub-nav-menu > li > a { padding: 12px 16px; }
    .pub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }
    .pub-hero { padding: 60px 20px; }
    .pub-hero h1 { font-size: 1.8rem; }
    .pub-container { padding: 0 20px; }
    .pub-section { padding: 48px 0; }
    .article-detail { padding: 40px 20px; }
    .article-detail .article-header h1 { font-size: 1.8rem; }
    .pub-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEW CORPORATE LANDING PAGE STYLES
   ============================================ */

/* ---------- Utility Classes ---------- */
.bg-alt {
    background-color: var(--pub-bg-alt);
}
.text-accent {
    color: var(--pub-accent);
}
.text-warning {
    color: #f1c40f;
}
.mt-4 {
    margin-top: 1.5rem;
}

/* ---------- Buttons ---------- */
.pub-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pub-btn-primary {
    background: var(--pub-accent);
    color: #fff;
}

.pub-btn-primary:hover {
    background: var(--pub-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.pub-btn-outline {
    background: transparent;
    border: 2px solid var(--pub-accent);
    color: var(--pub-accent);
}

.pub-btn-outline:hover {
    background: var(--pub-accent);
    color: #fff;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: #fff;
    color: var(--pub-accent);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-hero-primary:hover {
    background: var(--pub-bg-alt);
    color: var(--pub-accent-dark);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    padding: 14px 32px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--pub-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: var(--pub-text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--pub-text);
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--pub-shadow-lg);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pub-gradient);
    color: white;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ---------- Services Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--pub-surface);
    padding: 40px 30px;
    border-radius: var(--pub-radius-lg);
    box-shadow: var(--pub-shadow);
    border: 1px solid var(--pub-border);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pub-shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--pub-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--pub-gradient);
    color: #fff;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--pub-text);
}

.service-card p {
    color: var(--pub-text-secondary);
    font-size: 0.95rem;
}

/* ---------- Stats Section ---------- */
.pub-stats {
    background: #1a1a2e;
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item .counter {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--pub-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--pub-surface);
    padding: 40px 30px;
    border-radius: var(--pub-radius-lg);
    box-shadow: var(--pub-shadow);
    border: 1px solid var(--pub-border);
}

.testimonial-card .rating {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card .review {
    font-size: 1.05rem;
    color: var(--pub-text-secondary);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img, .client-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pub-bg-alt);
    color: var(--pub-text-muted);
    font-size: 2.2rem;
}

.client-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 4px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--pub-text-muted);
}

/* ---------- CTA Section ---------- */
.pub-cta {
    padding: 100px 0;
}

.cta-inner {
    background: var(--pub-gradient-alt);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
}

.cta-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--pub-accent-dark);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ---------- Additional Responsive Adjustments ---------- */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image { margin-top: 40px; text-align: center; }
    .about-image .image-wrapper { display: inline-block; }
    .experience-badge { right: 10px; bottom: -20px; }
    .cta-inner h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .pub-stats { padding: 40px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .cta-inner { padding: 50px 20px; }
    .pub-brand-text { display: none; }
}
