/* ============================================================
   POMOGRENATE CUSTOM CSS
   Animations, scroll reveals, components, layouts
   ============================================================ */

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(8, 8, 15, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-brand-bg-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-logo { flex-shrink: 0; }
.logo-img { height: 2.5rem; width: auto; object-fit: contain; }

.header-nav { display: none; }
@media (min-width: 768px) {
    .header-nav { display: flex; align-items: center; }
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links .menu-item a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-brand-gray);
    transition: color 0.2s;
}
.nav-links .menu-item a:hover { color: var(--color-brand-white); }
.nav-links .current-menu-item a,
.nav-links .current-menu-ancestor a {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.header-cta { display: none; }
@media (min-width: 768px) {
    .header-cta { display: flex; align-items: center; }
}

/* Mobile hamburger */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-brand-gray);
    transition: color 0.2s;
    cursor: pointer;
}
.mobile-menu-btn:hover { color: var(--color-brand-white); }
@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    height: 100%;
    width: 18rem;
    background: var(--color-brand-bg-mid);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-brand-gray);
    cursor: pointer;
    transition: color 0.2s;
}
.drawer-close:hover { color: var(--color-brand-white); }

.drawer-logo {
    display: block;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.drawer-nav { flex: 1; }
.drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.drawer-links .menu-item a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-brand-off-white);
    transition: color 0.2s;
}
.drawer-links .menu-item a:hover { color: var(--color-brand-white); }
.drawer-links .current-menu-item a {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drawer-whatsapp { margin-top: auto; }

.wa-icon { width: 1.25rem; height: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-brand-bg-mid);
    border-top: 1px solid var(--color-brand-bg-border);
}
.footer-inner { padding-top: 4rem; padding-bottom: 2rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.footer-logo-img { height: 2.5rem; width: auto; object-fit: contain; margin-bottom: 0.75rem; }
.footer-tagline { color: var(--color-brand-gray); font-size: 0.875rem; font-weight: 500; margin-top: 0.5rem; }
.footer-desc { color: var(--color-brand-gray); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; }

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-brand-bg-up);
    color: var(--color-brand-gray);
    transition: all 0.2s;
}
.social-icon-link:hover {
    background: var(--gradient-brand);
    color: var(--color-brand-white);
}
.social-icon-link svg { width: 1rem; height: 1rem; }

.footer-heading {
    color: var(--color-brand-white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li a {
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    line-height: 2;
    transition: color 0.2s;
}
.footer-links li a:hover { color: var(--color-brand-white); }

.hiring-badge {
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(139, 47, 201, 0.3);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-contact-list li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-contact-list li a:hover { color: var(--color-brand-white); }
.footer-contact-list li a svg { flex-shrink: 0; }

.footer-wa-btn { margin-top: 1.25rem; }
.footer-hours { color: var(--color-brand-gray-dark); font-size: 0.75rem; margin-top: 0.75rem; }

.footer-bottom {
    border-top: 1px solid var(--color-brand-bg-border);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { color: var(--color-brand-gray-dark); font-size: 0.875rem; margin: 0; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.from-left {
    transform: translateX(-40px);
}
.scroll-reveal.from-right {
    transform: translateX(40px);
}
.scroll-reveal.from-left.revealed,
.scroll-reveal.from-right.revealed {
    transform: translateX(0);
}
.stagger-child {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-child.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    background: var(--gradient-btn);
    overflow: hidden;
    padding: 1rem 0;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    white-space: nowrap;
    padding: 0 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.marquee-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}
.blog-card:hover {
    border-color: rgba(139, 47, 201, 0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body { padding: 1.25rem; }
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.blog-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(139, 47, 201, 0.15);
    color: var(--color-brand-purple);
}
.blog-card-readtime {
    font-size: 0.75rem;
    color: var(--color-brand-gray-dark);
}
.blog-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-brand-white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-brand-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-card-date {
    font-size: 0.75rem;
    color: var(--color-brand-gray-dark);
}
.blog-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-purple);
    transition: color 0.2s;
}
.blog-card-link:hover { color: var(--color-brand-white); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    border-radius: 1rem;
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    padding: 1.5rem;
    transition: all 0.2s ease;
}
.service-card:hover {
    border-color: rgba(139, 47, 201, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.service-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.service-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-brand-white);
    margin-bottom: 0.5rem;
}
.service-card-desc {
    font-size: 0.875rem;
    color: var(--color-brand-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.service-card-features li {
    font-size: 0.8125rem;
    color: var(--color-brand-gray);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-card-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.service-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-purple);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.service-card-link:hover { color: var(--color-brand-white); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--gradient-btn);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.cta-banner::before {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
}
.cta-banner::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
}
.cta-banner-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .cta-banner-heading { font-size: 2.5rem; }
}
.cta-banner-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.cta-banner .btn-gradient {
    background: var(--color-brand-white);
    color: var(--color-brand-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}
.cta-banner .btn-gradient:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   SECTION PATTERNS
   ============================================================ */
.section-light {
    background: var(--color-brand-light);
    color: var(--color-brand-bg);
}
.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--color-brand-bg);
}
.section-light p { color: var(--color-brand-gray-dark); }

.section-padding { padding: 5rem 0; }
@media (min-width: 768px) {
    .section-padding { padding: 6rem 0; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--color-brand-gray); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--color-brand-white); }
.breadcrumbs span { color: var(--color-brand-gray-dark); }
.breadcrumbs .separator { color: var(--color-brand-gray-dark); }

/* ============================================================
   HERO GLOBE (CSS recreation)
   ============================================================ */
.hero-globe {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
}
.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 47, 201, 0.2);
}
.globe-ring.outer {
    inset: 0;
    animation: spin-slow 20s linear infinite;
}
.globe-ring.inner {
    inset: 40px;
    border-color: rgba(139, 47, 201, 0.15);
    animation: spin-slow 15s linear infinite reverse;
}
.globe-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}
.globe-center img { width: 60px; height: 60px; }

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: -6px 0 0 -6px;
    animation: orbit var(--orbit-duration, 8s) linear infinite;
    --orbit-radius: 150px;
}
.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 47, 201, 0.15), transparent 70%);
    pointer-events: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.pomo-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-brand-purple);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    opacity: 0;
}
.pomo-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(139, 47, 201, 0.4);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0;
}
.pomo-cursor.active { width: 12px; height: 12px; }
.pomo-cursor-ring.active { width: 48px; height: 48px; border-color: rgba(139, 47, 201, 0.2); }

/* ============================================================
   FLOAT / ANIMATION UTILITIES
   ============================================================ */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 6s ease-in-out 2s infinite; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-marquee { animation: marquee 35s linear infinite; }

/* ============================================================
   SITE MAIN & ENTRY CONTENT
   ============================================================ */
.site-main {
    min-height: 60vh;
    background: var(--color-brand-bg);
}
.entry-content { background: var(--color-brand-bg); }

/* ============================================================
   PAGE LAYOUT CLASSES
   Replaces all inline styles in page templates
   ============================================================ */

/* --- Hero sections --- */
.pomo-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
}
.pomo-hero-full { min-height: 100vh; padding: 6rem 0 4rem; }
.pomo-hero-short { min-height: 35vh; padding: 4rem 0; }
.pomo-hero .bg-grid { position: absolute; inset: 0; }
.pomo-hero .glow-orb { position: absolute; }
.pomo-hero .container { position: relative; z-index: 10; }

.pomo-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .pomo-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .pomo-hero h1 { font-size: 3.75rem; }
}

.pomo-hero-subtitle {
    font-size: 1rem;
    color: var(--color-brand-gray);
    line-height: 1.7;
    max-width: 40rem;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .pomo-hero-subtitle { font-size: 1.125rem; }
}

/* --- Two-column grids --- */
.pomo-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .pomo-grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.pomo-grid-2.items-center { align-items: center; }

/* --- Three-column grids --- */
.pomo-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .pomo-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pomo-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --- Four-column grids --- */
.pomo-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .pomo-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Two-column value grids --- */
.pomo-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .pomo-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
}

/* --- Section heading pattern --- */
.pomo-section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.pomo-section-head .section-badge {
    margin-bottom: 1rem;
    display: inline-block;
}
.pomo-section-head h2 {
    font-size: 1.75rem;
    font-weight: 800;
}
@media (min-width: 768px) {
    .pomo-section-head h2 { font-size: 2.25rem; }
}
.pomo-section-head p {
    color: var(--color-brand-gray);
    font-size: 1rem;
    max-width: 40rem;
    margin: 1rem auto 0;
}

/* --- Container narrow --- */
.container-narrow { max-width: 48rem; margin: 0 auto; }
.container-mid { max-width: 64rem; margin: 0 auto; }

/* --- Button row --- */
.pomo-btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.pomo-btn-row.centered { justify-content: center; }

/* --- Trust pills row --- */
.pomo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.pomo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(139,47,201,0.1);
    border: 1px solid rgba(139,47,201,0.2);
    font-size: 0.75rem;
    color: var(--color-brand-gray);
}

/* --- Card base --- */
.pomo-card {
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}
.pomo-card:hover {
    border-color: rgba(139,47,201,0.3);
}
.pomo-card-dark {
    background: var(--color-brand-bg);
    border: 1px solid var(--color-brand-bg-border);
    border-radius: 1rem;
    padding: 2rem;
}
.pomo-card-white {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

/* --- Icon box --- */
.pomo-icon-box {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.pomo-icon-box-lg {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    font-size: 3rem;
}

/* --- Feature row --- */
.pomo-feature-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.pomo-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.pomo-feature-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.pomo-feature-desc {
    font-size: 0.875rem;
    color: var(--color-brand-gray);
    line-height: 1.6;
}
.section-light .pomo-feature-title { color: var(--color-brand-bg); }
.section-light .pomo-feature-desc { color: #6B7280; }

/* --- Step card --- */
.pomo-step-card {
    background: var(--color-brand-bg-mid);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-brand-bg-border);
    position: relative;
    overflow: hidden;
}
.pomo-step-number {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(139,47,201,0.06);
    font-family: var(--font-heading);
    line-height: 1;
}

/* --- Stat item --- */
.pomo-stat {
    text-align: center;
    padding: 1.5rem 0;
}
.pomo-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .pomo-stat-value { font-size: 3rem; }
}
.pomo-stat-label {
    color: var(--color-brand-gray);
    font-size: 0.875rem;
}

/* --- Testimonial card --- */
.pomo-testimonial {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}
.pomo-testimonial-quote {
    font-size: 2rem;
    color: var(--color-brand-purple);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}
.pomo-testimonial-text {
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.pomo-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pomo-testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
}
.pomo-testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-brand-bg);
}
.pomo-testimonial-role {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* --- FAQ items (non-Elementor) --- */
.faq-item {
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--color-brand-purple); }
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--color-brand-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-item.open .faq-question span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--color-brand-purple); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* --- Light section fixes --- */
.section-light .gradient-text {
    background: linear-gradient(90deg, #FF6B00, #CC2200, #8B2FC9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-light .section-badge {
    background: rgba(139,47,201,0.1);
    color: var(--color-brand-purple);
}

/* --- Dashboard card (WhyUs) --- */
.pomo-dashboard {
    background: var(--color-brand-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--color-brand-bg-border);
    box-shadow: var(--shadow-card);
}
.pomo-dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.pomo-dashboard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-brand-green);
}
.pomo-dashboard-label {
    font-size: 0.75rem;
    color: var(--color-brand-gray);
    font-weight: 600;
}
.pomo-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.pomo-dashboard-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
}
.pomo-dashboard-stat-label {
    font-size: 0.6875rem;
    color: var(--color-brand-gray);
}
.pomo-dashboard-chart {
    background: var(--color-brand-bg-mid);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--color-brand-bg-border);
}
.pomo-dashboard-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}
.pomo-dashboard-bar {
    flex: 1;
    background: var(--gradient-btn);
    border-radius: 2px;
    opacity: 0.8;
}
.pomo-dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.pomo-dashboard-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

/* --- Service detail row --- */
.pomo-service-row {
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-brand-bg-border);
}
.pomo-service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pomo-service-icon-wrap { position: relative; }
.pomo-service-glow {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.3;
    transform: scale(1.3);
}
.pomo-service-icon-lg {
    position: relative;
    width: 10rem;
    height: 10rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    font-size: 4rem;
    color: #fff;
}

/* --- Check list --- */
.pomo-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pomo-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-brand-gray);
}
.pomo-check-list li svg { flex-shrink: 0; margin-top: 2px; }

/* --- Comparison table --- */
.pomo-table {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--color-brand-bg-border);
}
.pomo-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pomo-table-cell {
    padding: 1rem;
}
.pomo-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.875rem;
    border-top: 1px solid var(--color-brand-bg-border);
}
.pomo-table-row:nth-child(even) { background: rgba(21,21,37,0.5); }
.pomo-table-row:nth-child(odd) { background: var(--color-brand-bg); }

/* --- Pricing card --- */
.pomo-pricing-card {
    background: var(--color-brand-bg-mid);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    border: 1px solid var(--color-brand-bg-border);
}
.pomo-pricing-card.featured {
    border: 2px solid var(--color-brand-purple);
    box-shadow: var(--shadow-glow-purple);
}
.pomo-pricing-popular {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
}
.pomo-pricing-name {
    font-weight: 700;
    font-size: 1.25rem;
}
.pomo-pricing-desc {
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.pomo-pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
}
.pomo-pricing-period {
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

/* --- Contact method card --- */
.pomo-contact-card {
    background: var(--color-brand-bg-up);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--color-brand-bg-border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.pomo-contact-title { font-weight: 600; font-size: 0.875rem; }
.pomo-contact-value { color: var(--color-brand-gray); font-size: 0.875rem; margin-top: 0.25rem; }
.pomo-contact-note { font-size: 0.75rem; margin-top: 0.25rem; }
.pomo-contact-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-brand-purple);
    margin-top: 0.5rem;
    display: inline-block;
}
.pomo-contact-link:hover { color: var(--color-brand-white); }

/* --- Trust signal --- */
.pomo-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pomo-trust-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(0,200,83,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pomo-trust-text {
    color: var(--color-brand-gray);
    font-size: 0.875rem;
}

/* --- Team member card --- */
.pomo-team-card {
    background: var(--color-brand-bg-mid);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-brand-bg-border);
    text-align: center;
}
.pomo-team-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.pomo-team-name { font-weight: 600; font-size: 1.125rem; }
.pomo-team-role { color: var(--color-brand-purple); font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.pomo-team-bio { color: var(--color-brand-gray); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; }

/* --- Hero globe visibility --- */
.hero-globe-wrap { display: none; }
@media (min-width: 1024px) {
    .hero-globe-wrap { display: block; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); }
}

/* --- Mission banner --- */
.pomo-mission {
    background: var(--gradient-btn);
    padding: 5rem 0;
    text-align: center;
}
.pomo-mission-quote-mark {
    color: rgba(255,255,255,0.4);
    font-size: 5rem;
    font-family: serif;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.pomo-mission-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .pomo-mission-text { font-size: 1.5rem; }
}

/* --- Inline CTA in blog posts --- */
.pomo-inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    border-radius: 1rem;
    text-align: center;
}
.pomo-inline-cta h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pomo-inline-cta p { color: var(--color-brand-gray); margin-bottom: 1.25rem; font-size: 0.875rem; }

/* --- Featured image card on service detail --- */
.pomo-feature-card {
    background: var(--color-brand-bg-up);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--color-brand-bg-border);
}
.pomo-check-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pomo-feature-text {
    color: var(--color-brand-off-white);
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 500;
}

/* --- Category filter buttons --- */
.category-filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--color-brand-bg-border);
    background: var(--color-brand-bg-mid);
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.category-filter-btn:hover {
    border-color: rgba(139,47,201,0.3);
    color: var(--color-brand-white);
}
.category-filter-btn.active {
    background: rgba(139,47,201,0.15);
    border-color: var(--color-brand-purple);
    color: var(--color-brand-purple);
}

/* --- WordPress pagination --- */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background: var(--color-brand-bg-mid);
    border: 1px solid var(--color-brand-bg-border);
    color: var(--color-brand-gray);
    font-size: 0.875rem;
    transition: all 0.2s;
}
.page-numbers:hover { border-color: var(--color-brand-purple); color: var(--color-brand-white); }
.page-numbers.current {
    background: var(--color-brand-purple);
    border-color: var(--color-brand-purple);
    color: #fff;
}

/* --- Elementor full width compatibility --- */
.elementor-page .site-main { padding: 0; }
.elementor-page .entry-content { padding: 0; }
