/* ============================================
   ROOT VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* === COLORS - DARK THEME (DEFAULT) === */
    --bg-dark: #060708;
    --bg-dark-secondary: #0c0d10;
    --bg-dark-tertiary: #131418;
    --bg-dark-card: #0f1014;
    --bg-dark-elevated: #181a20;
    
    --bg-light: #f7f8fb;
    --bg-light-secondary: #ffffff;
    --bg-light-tertiary: #eef0f5;
    --bg-light-card: #ffffff;
    --bg-light-elevated: #e4e6ed;
    
    --text-dark: #eeeff4;
    --text-dark-secondary: #9ca0ae;
    --text-dark-tertiary: #646874;
    
    --text-light: #14161c;
    --text-light-secondary: #4e515a;
    --text-light-tertiary: #838690;
    
    /* === ACCENT - Modern Teal/Cyan/Sky === */
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
    --accent-gradient-subtle: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    
    --gradient-text: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #34d399 100%);
    
    --border-dark: #1c1e26;
    --border-dark-hover: #282a36;
    --border-light: #dde0e7;
    --border-light-hover: #c8ccd6;
    
    --shadow-dark-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-dark-md: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-dark-lg: 0 20px 48px rgba(0,0,0,0.6);
    --shadow-dark-xl: 0 32px 64px rgba(0,0,0,0.7);
    
    --shadow-light-sm: 0 1px 2px rgba(0,0,0,0.03);
    --shadow-light-md: 0 8px 24px rgba(0,0,0,0.05);
    --shadow-light-lg: 0 20px 48px rgba(0,0,0,0.07);
    --shadow-light-xl: 0 32px 64px rgba(0,0,0,0.09);
    
    --glow-accent: 0 0 40px rgba(14, 165, 233, 0.12);
    --glow-teal: 0 0 40px rgba(16, 185, 129, 0.1);
    
    /* === TYPOGRAPHY === */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    
    /* === SPACING === */
    --container-max: 1280px;
    --container-padding: 2rem;
    --section-spacing: 6rem;
    --section-spacing-mobile: 3.5rem;
    
    /* === BORDERS & RADIUS === */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* === TRANSITIONS === */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* === Z-INDEX === */
    --z-base: 1;
    --z-elevated: 10;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-offcanvas: 350;
    --z-modal: 400;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 90px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: auto;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
    color: inherit;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

input,
select,
textarea {
    font-family: var(--font-primary);
    font-size: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

::selection {
    background: rgba(14, 165, 233, 0.25);
    color: #fff;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    z-index: var(--z-modal);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: top 200ms ease;
}

.skip-link:focus {
    top: 1rem;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: calc(var(--z-modal) + 100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.preloader-logo span {
    color: var(--accent);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transition: width 200ms ease;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(6, 7, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.7rem 0;
    box-shadow: var(--shadow-dark-md);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-mark.has-image {
    background: transparent;
    padding: 0;
}

.logo-mark-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: inherit;
}

.logo-name {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.logo-dot {
    color: var(--accent);
}

.logo-tag {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--text-dark-tertiary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-dark-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--text-dark);
    background: rgba(14, 165, 233, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Menu Toggle - Google Icon */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    color: var(--text-dark);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle .menu-icon {
    font-size: 28px;
    transition: all var(--transition-base);
}

.menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: calc(var(--z-sticky) - 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    letter-spacing: -0.02em;
}

.mobile-link:hover {
    color: var(--accent-light);
}

/* ============================================
   OVERLAY
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary {
    background: var(--accent-gradient-subtle);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.btn-primary::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    border-color: var(--border-dark-hover);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.125rem;
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION ALTERNATION - DARK & LIGHT
   ============================================ */
.section-dark {
    background: var(--bg-dark);
    color: var(--text-dark);
    position: relative;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-light);
    position: relative;
}

.section-light .section-title {
    color: var(--text-light);
}

.section-light .section-subtitle {
    color: var(--text-light-secondary);
}

.section-light .section-tag {
    color: var(--accent-dark);
    background: rgba(14, 165, 233, 0.08);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* ============================================
   HERO SECTION (DARK)
   ============================================ */
.hero {
    padding: 9rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
    opacity: 0;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; left: 40%; animation-delay: 5s; }
.particle:nth-child(7) { top: 45%; left: 90%; animation-delay: 6s; }
.particle:nth-child(8) { top: 15%; left: 35%; animation-delay: 7s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    25% { opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
    75% { opacity: 0.3; }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem 0.375rem 0.625rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--text-dark-secondary);
    width: fit-content;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.headline-line {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-dark);
}

.headline-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-dark-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   HERO STATS - Broj+tekst inline, label ispod
   ============================================ */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    flex-shrink: 0;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    line-height: 1;
    flex-shrink: 0;
}

.stat-plus {
    font-weight: 700;
    color: var(--accent-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-dark-tertiary);
    line-height: 1.3;
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    color: var(--text-dark-tertiary);
}

.hero-note .material-symbols-rounded {
    font-size: 16px;
    color: #f59e0b;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-code-window {
    width: 100%;
    max-width: 480px;
    background: #0d0e13;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    box-shadow: var(--shadow-dark-xl), var(--glow-accent);
    position: relative;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1rem;
    background: #13141a;
    border-bottom: 1px solid var(--border-dark);
}

.code-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-filename {
    margin-left: 0.75rem;
    font-size: var(--font-size-xs);
    color: var(--text-dark-tertiary);
    font-family: var(--font-mono);
}

.code-body {
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.65;
    overflow-x: auto;
}

.code-body .code-tag { color: #f472b6; }
.code-body .code-comment { color: #6b7280; font-style: italic; }
.code-body .code-function { color: #60a5fa; }
.code-body .code-name { color: #fbbf24; }
.code-body .code-property { color: #67e8f9; }
.code-body .code-string { color: #4ade80; }

.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(15, 16, 20, 0.95);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text-dark-secondary);
    box-shadow: var(--shadow-dark-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatBadge 6s ease-in-out infinite;
}

.hero-floating-badge:first-of-type {
    bottom: -10px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-badge.secondary {
    top: 20px;
    right: -40px;
    animation-delay: 3s;
}

.hero-floating-badge .material-symbols-rounded {
    color: var(--accent-light);
    font-size: 18px;
}

.hero-floating-badge strong {
    color: var(--text-dark);
    font-weight: 700;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    overflow: hidden;
    width: 100%;
}

.trust-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.trust-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-dark-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    flex-shrink: 0;
}

.trust-slider {
    overflow: hidden;
    width: 100%;
}

.trust-track {
    display: flex;
    gap: 0;
    animation: trustScroll 45s linear infinite;
    width: max-content;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark-secondary);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.trust-item:hover {
    color: var(--text-dark);
}

.trust-item .material-symbols-rounded {
    font-size: 20px;
    color: var(--accent-light);
    flex-shrink: 0;
}

@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-slider:hover .trust-track {
    animation-play-state: paused;
}

/* ============================================
   ABOUT SECTION (LIGHT)
   ============================================ */
.about {
    padding: var(--section-spacing) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-lead {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: 0.875rem;
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.check-item .material-symbols-rounded {
    color: #22c55e;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-item strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0.125rem;
}

.check-item p {
    font-size: var(--font-size-xs);
    color: var(--text-light-tertiary);
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: var(--bg-light-secondary);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light-md);
    position: relative;
}

.about-quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem !important;
    color: rgba(14, 165, 233, 0.12);
}

.about-card blockquote {
    font-size: var(--font-size-base);
    font-style: italic;
    color: var(--text-light-secondary);
    line-height: 1.7;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent);
    margin: 1.5rem 0 1rem;
}

.about-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.about-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.number-block {
    background: var(--bg-light-secondary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.number-block:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-light-md);
    transform: translateY(-4px);
}

.number-block .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-light);
}

.number-block .number-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-light-tertiary);
    margin-top: 0.25rem;
}

/* ============================================
   SERVICES SECTION (DARK)
   ============================================ */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: var(--border-dark-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-dark-lg), var(--glow-accent);
}

.service-card:hover::before {
    opacity: 1;
}

.service-bg-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    opacity: 0.015;
    pointer-events: none;
    transition: all var(--transition-slow);
}

.service-card:hover .service-bg-icon {
    opacity: 0.04;
    transform: scale(1.3) rotate(-10deg);
}

.service-bg-icon .material-symbols-rounded {
    font-size: 160px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
}

.service-icon-wrap .material-symbols-rounded {
    font-size: 26px;
    color: var(--accent-light);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrap .material-symbols-rounded {
    color: #fff;
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.service-card > p {
    font-size: var(--font-size-sm);
    color: var(--text-dark-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--text-dark-secondary);
}

.service-features .material-symbols-rounded {
    font-size: 18px;
    color: #22c55e;
}

.service-read-more {
    color: var(--accent-light);
    font-weight: 600;
    font-size: var(--font-size-sm);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.service-read-more:hover {
    color: #fff;
    gap: 0.625rem;
}

.service-read-more .material-symbols-rounded {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.service-read-more:hover .material-symbols-rounded {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-dark-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-cta p {
    font-size: var(--font-size-lg);
    color: var(--text-dark-secondary);
}

/* ============================================
   OFFCANVAS (Service Detail) - FIXED
   ============================================ */
.offcanvas {
    position: fixed;
    top: 0;
    right: -550px;
    width: 520px;
    max-width: 92vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-dark-secondary);
    border-left: 1px solid var(--border-dark);
    z-index: var(--z-offcanvas);
    transition: right var(--transition-slow);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--shadow-dark-xl);
    display: flex;
    flex-direction: column;
}

.offcanvas.open {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    position: sticky;
    top: 0;
    background: var(--bg-dark-secondary);
    z-index: 10;
    border-bottom: 1px solid var(--border-dark);
    gap: 0.75rem;
    flex-shrink: 0;
    min-height: 70px;
}

.offcanvas-nav-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.offcanvas-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-dark-secondary);
    background: var(--bg-dark-tertiary);
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}

.offcanvas-nav-btn:hover {
    background: var(--bg-dark-elevated);
    color: var(--text-dark);
    border-color: var(--border-dark-hover);
}

.offcanvas-close {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-tertiary);
    transition: all var(--transition-fast);
    color: var(--text-dark);
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid transparent;
    z-index: 5;
}

.offcanvas-close:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.offcanvas-close .material-symbols-rounded {
    font-size: 24px;
}

.offcanvas-body {
    padding: 1.5rem 1.5rem 3rem;
    flex: 1;
}

.offcanvas-body .offcanvas-icon {
    font-size: 3.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.offcanvas-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.offcanvas-body .offcanvas-desc {
    font-size: var(--font-size-base);
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.offcanvas-body .offcanvas-details h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.offcanvas-body .offcanvas-details ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.offcanvas-body .offcanvas-details li {
    font-size: var(--font-size-sm);
    color: var(--text-dark-secondary);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.offcanvas-body .offcanvas-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
}

/* ============================================
   PROCESS SECTION (LIGHT)
   ============================================ */
.process {
    padding: var(--section-spacing) 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(14, 165, 233, 0.2);
    line-height: 1;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light-secondary);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* ============================================
   COMPARISON SECTION (DARK)
   ============================================ */
.comparison {
    padding: var(--section-spacing) 0;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.tab {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-dark-secondary);
    background: var(--bg-dark-tertiary);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.tab:hover {
    color: var(--text-dark);
    background: var(--bg-dark-elevated);
}

.tab.active {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-light);
    border-color: rgba(14, 165, 233, 0.3);
}

.comparison-panel {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.comparison-panel.active {
    display: block;
}

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

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.compare-col {
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid;
}

.compare-bad {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

.compare-good {
    background: rgba(34, 197, 94, 0.04);
    border-color: rgba(34, 197, 94, 0.15);
}

.compare-col h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-bad h3 { color: #fca5a5; }
.compare-good h3 { color: #86efac; }

.compare-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.compare-col li {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.compare-bad li { color: #fca5a5; }
.compare-good li { color: #bbf7d0; }

.compare-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.compare-bad li::before { background: rgba(239, 68, 68, 0.5); }
.compare-good li::before { background: rgba(34, 197, 94, 0.5); }

/* ============================================
   PORTFOLIO SECTION (LIGHT)
   ============================================ */
.portfolio {
    padding: var(--section-spacing) 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-light-secondary);
    background: var(--bg-light-tertiary);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-light);
    background: var(--bg-light-elevated);
}

.filter-btn.active {
    background: var(--accent);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    background: var(--bg-light-secondary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-light-lg);
    transform: translateY(-6px);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.portfolio-item-link:visited {
    color: inherit;
}

.portfolio-item-link .portfolio-info h3 {
    transition: color var(--transition-fast);
}

.portfolio-item-link:hover .portfolio-info h3 {
    color: var(--accent);
}

.portfolio-thumb {
    height: 180px;
    background: var(--bg-light-tertiary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.portfolio-item:hover .portfolio-thumb:not(.has-background) {
    background: rgba(14, 165, 233, 0.05);
}

.portfolio-thumb.has-background::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(6, 7, 8, 0.05) 0%, rgba(6, 7, 8, 0.48) 100%);
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.portfolio-item:hover .portfolio-thumb.has-background::before {
    opacity: 0.78;
}

.portfolio-thumb .material-symbols-rounded {
    font-size: 4rem;
    color: var(--text-light-tertiary);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.portfolio-thumb.has-background .material-symbols-rounded {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.portfolio-thumb.has-background.icon-bottom-left .material-symbols-rounded {
    right: auto;
    left: 1rem;
}

.portfolio-thumb.has-background.icon-center .material-symbols-rounded {
    inset: auto;
    position: relative;
    font-size: 4rem;
}

.portfolio-item:hover .portfolio-thumb:not(.has-background) .material-symbols-rounded {
    color: var(--accent);
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-thumb.has-background .material-symbols-rounded {
    color: #fff;
    transform: scale(1.08);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-cat {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-light);
    margin: 0.375rem 0;
}

.portfolio-info p {
    font-size: var(--font-size-sm);
    color: var(--text-light-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portfolio-metrics {
    display: flex;
    gap: 0.75rem;
}

.portfolio-metrics span {
    font-size: var(--font-size-xs);
    color: var(--text-light-tertiary);
    background: var(--bg-light-tertiary);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
}

.portfolio-metrics strong {
    color: var(--text-light);
}

.portfolio-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light-tertiary);
    border-radius: var(--radius-xl);
    color: var(--text-light-secondary);
    font-size: var(--font-size-sm);
}

/* ============================================
   TESTIMONIALS (DARK)
   ============================================ */
.testimonials {
    padding: var(--section-spacing) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    transition: all var(--transition-base);
    font-style: normal;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-dark-hover);
    box-shadow: var(--shadow-dark-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.testimonial-content.expanded p {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--bg-dark-card));
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.testimonial-content.expanded::after {
    opacity: 0;
}

.testimonial-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.testimonial-expand-btn:hover {
    gap: 0.625rem;
}

.testimonial-expand-btn .material-symbols-rounded {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.testimonial-content.expanded ~ .testimonial-expand-btn .material-symbols-rounded {
    transform: rotate(180deg);
}

.testimonial-card footer {
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
    margin-top: auto;
}

.testimonial-card footer strong {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}

.testimonial-card footer span {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-dark-tertiary);
    margin-top: 0.125rem;
}

/* ============================================
   TESTIMONIALS LOAD MORE BUTTON
   ============================================ */
.testimonials-load-more {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-load-more .btn {
    padding: 0.875rem 2rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--accent-light);
    background: transparent;
    border: 1.5px solid rgba(14, 165, 233, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.testimonials-load-more .btn:hover {
    background: rgba(14, 165, 233, 0.08);
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.testimonials-load-more .btn .material-symbols-rounded {
    font-size: 20px;
    transition: transform var(--transition-base);
}

.testimonials-load-more .btn:hover .material-symbols-rounded {
    transform: translateY(3px);
}

/* ============================================
   PRICING SECTION (LIGHT)
   ============================================ */
.pricing {
    padding: var(--section-spacing) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-light-lg);
    transform: translateY(-6px);
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-light-lg), 0 0 0 4px rgba(14, 165, 233, 0.08);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-light);
}

.pricing-price span {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-light-tertiary);
}

.pricing-desc {
    font-size: var(--font-size-sm);
    color: var(--text-light-secondary);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--font-size-sm);
    color: var(--text-light-secondary);
}

.pricing-features .material-symbols-rounded {
    color: #22c55e;
    font-size: 18px;
}

.btn-details {
    width: 100%;
    margin-bottom: 0.5rem;
}

/* ============================================
   MODAL (Pricing Details)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    padding: 1.5rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-light-secondary);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-light-xl);
    animation: modalIn 0.4s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-tertiary);
    transition: all var(--transition-fast);
    color: var(--text-light);
    cursor: pointer;
    border: none;
}

.modal-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.modal-close .material-symbols-rounded {
    font-size: 22px;
}

.modal-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.modal-body .modal-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.modal-body .modal-desc {
    font-size: var(--font-size-base);
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-body .modal-includes h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.modal-body .modal-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.modal-body .modal-includes li {
    font-size: var(--font-size-sm);
    color: var(--text-light-secondary);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.modal-body .modal-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: 700;
}

/* ============================================
   FAQ SECTION (DARK)
   ============================================ */
.faq {
    padding: var(--section-spacing) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-dark-hover);
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--glow-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-question .material-symbols-rounded {
    transition: transform var(--transition-base);
    font-size: 22px;
    color: var(--text-dark-tertiary);
    flex-shrink: 0;
}

.faq-item.active .faq-question .material-symbols-rounded {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-dark-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION (LIGHT) - Inline Layout
   ============================================ */
.contact {
    padding: var(--section-spacing) 0;
}

.contact-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-desc {
    font-size: var(--font-size-base);
    color: var(--text-light-secondary);
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.benefit-item .material-symbols-rounded {
    color: var(--accent);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.benefit-item p {
    font-size: var(--font-size-xs);
    color: var(--text-light-tertiary);
}

.contact-form {
    background: var(--bg-light-secondary);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    background: var(--bg-light);
    color: var(--text-light);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    background: #fff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23838690' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    color: var(--text-light-tertiary);
    text-align: center;
    justify-content: center;
}

.form-note .material-symbols-rounded {
    font-size: 14px;
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08);
}

.field-error {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
    animation: fadeSlideIn 0.2s ease;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.5;
    animation: fadeSlideIn 0.3s ease;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.08);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   FOOTER (DARK)
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-dark-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links h4 {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-links span {
    font-size: var(--font-size-sm);
    color: var(--text-dark-tertiary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.footer-bottom p {
    font-size: var(--font-size-xs);
    color: var(--text-dark-tertiary);
}

.footer-seo {
    opacity: 0.4;
    font-size: 0.65rem !important;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-elevated);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (1200px)
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL LAPTOP (1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 4.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-inline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-6px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (1200px)
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL LAPTOP (1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 4.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-inline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-featured:hover {
        transform: translateY(-6px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
        --section-spacing: 3.5rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-actions .btn-sm {
        display: none;
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .headline-line {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    
    /* Hero Stats - JEDAN RED na mobilnom, label ispod */
    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1.25rem;
        width: 100%;
    }
    
    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
    }
    
    .stat-row {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-plus {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        max-width: 80px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-floating-badge {
        display: none;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-checklist {
        grid-template-columns: 1fr;
    }
    
    .about-numbers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-numbers .number {
        font-size: 1.5rem;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        font-size: 1.75rem;
    }
    
    .comparison-tabs {
        gap: 0.375rem;
    }
    
    .tab {
        padding: 0.5rem 0.875rem;
        font-size: var(--font-size-xs);
    }
    
    .portfolio-filters {
        gap: 0.375rem;
    }
    
    .filter-btn {
        padding: 0.375rem 0.75rem;
        font-size: var(--font-size-xs);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-inline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
    
    .offcanvas {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
    
    .offcanvas-header {
        padding: 1rem 1.25rem;
        min-height: 60px;
    }
    
    .offcanvas-nav-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .offcanvas-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-plus {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.58rem;
        max-width: 60px;
    }
    
    .comparison-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab {
        text-align: center;
    }
    
    .portfolio-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }
    
    .about-numbers {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }
    
    .number-block {
        padding: 1rem 0.5rem;
    }
    
    .number-block .number {
        font-size: 1.25rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .testimonials-load-more .btn {
        width: 100%;
    }
    
    .trust-item {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    .trust-item .material-symbols-rounded {
        font-size: 16px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .trust-track {
        animation: none !important;
    }
    
    .hero-particles {
        display: none;
    }
}

/* ============================================
   DM DEMO / CLIENT PROPOSAL VIEWER
   Isolated iframe preview so pasted HTML/CSS/JS cannot break the theme.
   ============================================ */
body.dm-demo-template {
    background: #0b0d12;
    color: #f5f7fb;
    overflow: hidden;
}
.dm-demo-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 99999;
    background: rgba(8, 10, 14, 0.94);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
}
.dm-demo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.dm-demo-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-weight: 800;
}
.dm-demo-title-wrap {
    min-width: 0;
}
.dm-demo-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}
.dm-demo-subtitle {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}
.dm-demo-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.3rem;
}
.dm-demo-device-btn {
    width: 40px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.68);
    transition: all 180ms ease;
}
.dm-demo-device-btn:hover,
.dm-demo-device-btn.active {
    color: #fff;
    background: rgba(14,165,233,0.24);
}
.dm-demo-device-btn .material-symbols-rounded {
    font-size: 21px;
}
.dm-demo-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.dm-demo-action-btn,
.dm-demo-interest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    background: rgba(255,255,255,0.06);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 180ms ease;
}
.dm-demo-action-btn:hover,
.dm-demo-interest-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.1);
}
.dm-demo-interest-btn {
    border: 0;
    background: linear-gradient(135deg,#0ea5e9,#06b6d4);
    box-shadow: 0 8px 22px rgba(14,165,233,0.28);
}
.dm-demo-stage {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 18px;
    overflow: auto;
    background:
        radial-gradient(circle at 20% 20%, rgba(14,165,233,0.16), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(16,185,129,0.12), transparent 30%),
        #0b0d12;
}
.dm-demo-frame-shell {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
    transition: width 240ms ease, max-width 240ms ease, height 240ms ease;
}
.dm-demo-frame-shell[data-device="tablet"] { width: 820px; max-width: 100%; }
.dm-demo-frame-shell[data-device="mobile"] { width: 390px; max-width: 100%; }
.dm-demo-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}
.dm-demo-interest-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.76);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.dm-demo-interest-modal.active { display: flex; }
.dm-demo-interest-card {
    width: min(520px, 100%);
    border-radius: 24px;
    background: #fff;
    color: #111827;
    padding: 1.5rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}
.dm-demo-interest-card h2 {
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    color: #111827;
}
.dm-demo-interest-card p {
    color: #596170;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}
.dm-demo-interest-card .form-group { margin-bottom: 0.85rem; }
.dm-demo-interest-card label {
    display: block;
    color: #111827;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.dm-demo-interest-card input,
.dm-demo-interest-card textarea {
    width: 100%;
    border: 1px solid #d9dde6;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    background: #f8fafc;
    color: #111827;
}
.dm-demo-interest-actions {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
}
.dm-demo-toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 100001;
    display: none;
    max-width: 360px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    font-size: 0.9rem;
}
.dm-demo-toast.active { display: block; }
@media (max-width: 760px) {
    .dm-demo-toolbar { height: auto; min-height: 68px; flex-wrap: wrap; padding: 0.75rem; }
    .dm-demo-stage { top: 112px; padding: 10px; }
    .dm-demo-title { max-width: 220px; }
    .dm-demo-actions { width: 100%; justify-content: space-between; }
    .dm-demo-action-btn, .dm-demo-interest-btn { flex: 1; padding-left: 0.65rem; padding-right: 0.65rem; }
}

/* ============================================
   COMPARISON TABS - ACTIVE STATE FIX
   ============================================ */
.comparison-tabs .tab {
    position: relative;
    isolation: isolate;
}

.comparison-tabs .tab.active,
.comparison-tabs .tab[aria-selected="true"] {
    background: var(--accent-gradient-subtle);
    color: #fff;
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 10px 26px rgba(14, 165, 233, 0.28), inset 0 1px 0 rgba(255,255,255,0.16);
    transform: translateY(-2px);
}

.comparison-tabs .tab.active::after,
.comparison-tabs .tab[aria-selected="true"]::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-light);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.85);
    transform: translateX(-50%);
}

.comparison-panel[hidden] {
    display: none !important;
}

/* Dusan M v1.3.1 - centered contact section with shortcode form */
.contact .dm-contact-centered-head{margin-bottom:1.35rem}.dm-contact-intro{max-width:760px}.dm-contact-benefits-row{display:flex;justify-content:center;align-items:stretch;gap:1rem;flex-wrap:wrap;margin:0 auto 2.25rem;max-width:1080px}.dm-contact-benefits-row .benefit-item{display:flex;align-items:flex-start;gap:.75rem;background:transparent;border:0;padding:.65rem .9rem;min-width:240px}.dm-contact-benefits-row .benefit-item>.material-symbols-rounded{color:var(--accent);font-size:20px;margin-top:.15rem}.dm-contact-benefits-row .benefit-item strong{display:block;color:var(--text-light);font-size:.95rem;font-weight:800;margin-bottom:.1rem}.dm-contact-benefits-row .benefit-item p{margin:0;color:var(--text-light-tertiary);font-size:.83rem;line-height:1.35}.dm-contact-form-wide{width:100%;max-width:1180px;margin:0 auto}.dm-contact-form-wide .dmcf-shell{width:100%}@media(max-width:780px){.dm-contact-benefits-row{gap:.35rem;margin-bottom:1.5rem}.dm-contact-benefits-row .benefit-item{width:100%;min-width:0;padding:.55rem 0}.dm-contact-benefits-row .benefit-item p{font-size:.8rem}}


/* Dusan M v1.3.2 - stronger centered contact benefit row */
.contact .dm-contact-benefits-row{display:flex!important;justify-content:center!important;align-items:center!important;gap:1.2rem!important;flex-wrap:wrap!important;text-align:left!important;margin-left:auto!important;margin-right:auto!important;max-width:1040px!important;width:100%!important}.contact .dm-contact-benefits-row .benefit-item{width:auto!important;max-width:300px!important;min-width:250px!important;flex:0 1 300px!important;justify-content:flex-start!important}.contact .dm-contact-form-wide{max-width:1220px!important}.contact .dm-contact-form-wide .dmcf-form{width:100%!important}@media(max-width:860px){.contact .dm-contact-benefits-row{max-width:620px!important;gap:.5rem!important}.contact .dm-contact-benefits-row .benefit-item{flex:1 1 100%!important;max-width:100%!important;min-width:0!important}}


/* Dusan M v1.3.3 - polished centered contact benefits */
.contact .dm-contact-centered-head {
    margin-bottom: 2rem !important;
}

.contact .dm-contact-benefits-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto 2.35rem !important;
    padding: 0 .5rem !important;
    text-align: left !important;
    align-items: stretch !important;
    justify-content: center !important;
}

.contact .dm-contact-benefits-row .benefit-item {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: .8rem !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 1rem 1.1rem !important;
    border: 1px solid rgba(14, 165, 233, .12) !important;
    border-radius: var(--radius-xl) !important;
    background: rgba(255, 255, 255, .62) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .045) !important;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base) !important;
}

.contact .dm-contact-benefits-row .benefit-item:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(14, 165, 233, .26) !important;
    box-shadow: 0 20px 42px rgba(14, 165, 233, .08) !important;
}

.contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    border-radius: 999px !important;
    background: rgba(14, 165, 233, .10) !important;
    color: var(--accent) !important;
    font-size: 19px !important;
    line-height: 1 !important;
}

.contact .dm-contact-benefits-row .benefit-item strong {
    display: block !important;
    margin: .05rem 0 .18rem !important;
    color: var(--text-light) !important;
    font-size: .95rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.contact .dm-contact-benefits-row .benefit-item p {
    margin: 0 !important;
    color: var(--text-light-tertiary) !important;
    font-size: .82rem !important;
    line-height: 1.4 !important;
}

@media (max-width: 980px) {
    .contact .dm-contact-benefits-row {
        max-width: 720px !important;
        grid-template-columns: 1fr !important;
        gap: .75rem !important;
        padding: 0 !important;
        margin-bottom: 2rem !important;
    }

    .contact .dm-contact-benefits-row .benefit-item {
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: .9rem 1rem !important;
    }
}

@media (max-width: 560px) {
    .contact .dm-contact-benefits-row {
        margin-bottom: 1.5rem !important;
    }

    .contact .dm-contact-benefits-row .benefit-item {
        gap: .7rem !important;
        padding: .82rem .9rem !important;
        border-radius: var(--radius-lg) !important;
    }

    .contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 17px !important;
    }
}

/* ============================================
   Dusan M v1.3.4 - Final mobile polish + hero/contact CSS
   ============================================ */

/* Contact benefits final polished row */
#contact .dm-contact-benefits-row,
.contact .dm-contact-benefits-row {
    width: 100% !important;
    max-width: 1040px !important;
    margin: 2.25rem auto 2.75rem !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
    justify-content: center !important;
    text-align: left !important;
}

#contact .dm-contact-benefits-row .benefit-item,
.contact .dm-contact-benefits-row .benefit-item {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.95rem !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    padding: 1.25rem 1.3rem !important;
    min-height: 118px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(14, 165, 233, 0.16) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

#contact .dm-contact-benefits-row .benefit-item:hover,
.contact .dm-contact-benefits-row .benefit-item:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(14, 165, 233, 0.35) !important;
    box-shadow: 0 22px 54px rgba(14, 165, 233, 0.12) !important;
}

#contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded,
.contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(34, 211, 238, 0.14)) !important;
    color: #0ea5e9 !important;
    font-size: 21px !important;
    line-height: 1 !important;
    margin-top: 0.05rem !important;
}

#contact .dm-contact-benefits-row .benefit-item > div,
.contact .dm-contact-benefits-row .benefit-item > div {
    min-width: 0 !important;
}

#contact .dm-contact-benefits-row .benefit-item strong,
.contact .dm-contact-benefits-row .benefit-item strong {
    display: block !important;
    margin: 0 0 0.28rem !important;
    font-size: 0.98rem !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
    letter-spacing: -0.015em !important;
    color: #0f172a !important;
}

#contact .dm-contact-benefits-row .benefit-item p,
.contact .dm-contact-benefits-row .benefit-item p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
    color: #64748b !important;
    text-align: left !important;
}

@media (max-width: 980px) {
    #contact .dm-contact-benefits-row,
    .contact .dm-contact-benefits-row {
        max-width: 680px !important;
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        margin-top: 1.75rem !important;
        margin-bottom: 2rem !important;
    }

    #contact .dm-contact-benefits-row .benefit-item,
    .contact .dm-contact-benefits-row .benefit-item {
        min-height: auto !important;
        align-items: center !important;
    }
}

@media (max-width: 600px) {
    #contact .dm-contact-benefits-row,
    .contact .dm-contact-benefits-row {
        max-width: 100% !important;
        margin: 1.4rem auto 1.8rem !important;
        gap: 0.7rem !important;
    }

    #contact .dm-contact-benefits-row .benefit-item,
    .contact .dm-contact-benefits-row .benefit-item {
        padding: 0.95rem 1rem !important;
        border-radius: 1rem !important;
        gap: 0.75rem !important;
    }

    #contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded,
    .contact .dm-contact-benefits-row .benefit-item > .material-symbols-rounded {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        font-size: 18px !important;
    }

    #contact .dm-contact-benefits-row .benefit-item strong,
    .contact .dm-contact-benefits-row .benefit-item strong {
        font-size: 0.92rem !important;
    }

    #contact .dm-contact-benefits-row .benefit-item p,
    .contact .dm-contact-benefits-row .benefit-item p {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
    }
}

/* Hero stats final glass design */
.hero-stats {
    width: 100% !important;
    max-width: 650px !important;
    margin: 1rem 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
}

.hero-stats .stat {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0.42rem !important;
    min-height: 118px !important;
    padding: 1.15rem 1.15rem !important;
    border-radius: 1.35rem !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.13), inset 0 -1px 0 rgba(255, 255, 255, 0.035) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease !important;
}

.hero-stats .stat::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    z-index: -2 !important;
    background: radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.26), transparent 38%), radial-gradient(circle at 90% 100%, rgba(52, 211, 153, 0.16), transparent 42%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035), transparent 55%) !important;
    opacity: 0.95 !important;
}

.hero-stats .stat::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 1rem !important;
    right: 1rem !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #38bdf8, #22d3ee, #34d399) !important;
    opacity: 0.85 !important;
}

.hero-stats .stat:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(56, 189, 248, 0.34) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(14, 165, 233, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.hero-stats .stat-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    gap: 0.18rem !important;
    line-height: 1 !important;
}

.hero-stats .stat-number {
    display: inline-block !important;
    font-size: clamp(2rem, 3vw, 2.65rem) !important;
    line-height: 0.95 !important;
    font-weight: 900 !important;
    letter-spacing: -0.06em !important;
    color: #ffffff !important;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
}

.hero-stats .stat-plus {
    display: inline-block !important;
    font-size: 1.45rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    color: #38bdf8 !important;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.48) !important;
}

.hero-stats .stat-label {
    display: block !important;
    max-width: 155px !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    font-weight: 650 !important;
    letter-spacing: -0.012em !important;
    color: rgba(238, 239, 244, 0.68) !important;
    white-space: normal !important;
}

@media (max-width: 980px) {
    .hero-stats {
        max-width: 100% !important;
        gap: 0.8rem !important;
    }

    .hero-stats .stat {
        min-height: 108px !important;
        padding: 1rem !important;
        border-radius: 1.15rem !important;
    }

    .hero-stats .stat-number {
        font-size: clamp(1.75rem, 4vw, 2.2rem) !important;
    }

    .hero-stats .stat-plus {
        font-size: 1.22rem !important;
    }

    .hero-stats .stat-label {
        font-size: 0.72rem !important;
        line-height: 1.28 !important;
    }
}

@media (max-width: 680px) {
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0.55rem !important;
        max-width: 100% !important;
        margin: 0.9rem 0 0 !important;
    }

    .hero-stats .stat {
        min-height: 98px !important;
        padding: 0.85rem 0.55rem !important;
        border-radius: 0.95rem !important;
        gap: 0.35rem !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: 1px solid rgba(255, 255, 255, 0.115) !important;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) !important;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
        backdrop-filter: blur(16px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
    }

    .hero-stats .stat::before {
        background: radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.20), transparent 40%), radial-gradient(circle at 100% 100%, rgba(52, 211, 153, 0.12), transparent 44%) !important;
    }

    .hero-stats .stat::after {
        left: 0.62rem !important;
        right: 0.62rem !important;
        height: 2px !important;
    }

    .hero-stats .stat-row {
        width: 100% !important;
        justify-content: center !important;
        gap: 0.12rem !important;
    }

    .hero-stats .stat-number {
        font-size: clamp(1.65rem, 9vw, 2.15rem) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.055em !important;
        text-align: center !important;
    }

    .hero-stats .stat-plus {
        font-size: 1.12rem !important;
        line-height: 1 !important;
    }

    .hero-stats .stat-label {
        max-width: none !important;
        width: 100% !important;
        font-size: 0.64rem !important;
        line-height: 1.22 !important;
        font-weight: 650 !important;
        color: rgba(238, 239, 244, 0.70) !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        gap: 0.42rem !important;
    }

    .hero-stats .stat {
        min-height: 90px !important;
        padding: 0.72rem 0.45rem !important;
        border-radius: 0.82rem !important;
    }

    .hero-stats .stat::after {
        left: 0.48rem !important;
        right: 0.48rem !important;
    }

    .hero-stats .stat-number {
        font-size: 1.55rem !important;
    }

    .hero-stats .stat-plus {
        font-size: 1rem !important;
    }

    .hero-stats .stat-label {
        font-size: 0.58rem !important;
        line-height: 1.18 !important;
    }
}

@media (max-width: 360px) {
    .hero-stats {
        gap: 0.35rem !important;
    }

    .hero-stats .stat {
        padding: 0.62rem 0.35rem !important;
        min-height: 86px !important;
    }

    .hero-stats .stat-number {
        font-size: 1.38rem !important;
    }

    .hero-stats .stat-plus {
        font-size: 0.9rem !important;
    }

    .hero-stats .stat-label {
        font-size: 0.52rem !important;
        line-height: 1.15 !important;
    }
}

/* Mobile hero title alignment and scale */
@media (max-width: 680px) {
    .hero .container {
        text-align: left !important;
    }

    .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .hero-badge {
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
    }

    .hero-headline {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .headline-line {
        font-size: clamp(2.28rem, 11vw, 3.45rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.055em !important;
        text-align: left !important;
    }

    .hero-description {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 390px) {
    .headline-line {
        font-size: clamp(2.08rem, 10.5vw, 3rem) !important;
    }
}

/* Mobile services subtitle small adjustment */
@media (max-width: 680px) {
    .services .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.48 !important;
        max-width: 22rem !important;
    }
}

@media (max-width: 390px) {
    .services .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }
}

/* Mobile horizontal tab/filter scrollers */
@media (max-width: 680px) {
    .comparison-tabs,
    .portfolio-filters {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0.6rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        max-width: calc(100% + (var(--container-padding) * 2)) !important;
        width: calc(100% + (var(--container-padding) * 2)) !important;
        margin-left: calc(var(--container-padding) * -1) !important;
        margin-right: calc(var(--container-padding) * -1) !important;
        padding: 0 1.25rem 1rem !important;
    }

    .comparison-tabs::-webkit-scrollbar,
    .portfolio-filters::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .comparison-tabs .tab,
    .portfolio-filters .filter-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        border-radius: 999px !important;
        font-size: 0.82rem !important;
        font-weight: 750 !important;
        line-height: 1 !important;
        min-height: 42px !important;
        padding: 0.76rem 1rem !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
    }

    .comparison-tabs .tab.active,
    .comparison-tabs .tab[aria-selected="true"] {
        transform: none !important;
    }

    .comparison-tabs .tab.active::after,
    .comparison-tabs .tab[aria-selected="true"]::after {
        display: none !important;
    }

    .portfolio-filters .filter-btn {
        background: rgba(255, 255, 255, 0.88) !important;
        border: 1px solid rgba(14, 165, 233, 0.16) !important;
        color: var(--text-light-secondary) !important;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
    }

    .portfolio-filters .filter-btn.active {
        background: var(--accent-gradient-subtle) !important;
        color: #fff !important;
        border-color: rgba(14, 165, 233, 0.42) !important;
        box-shadow: 0 12px 28px rgba(14, 165, 233, 0.22) !important;
    }
}

/* Mobile testimonials title - bigger, cleaner 2-line wrap */
@media (max-width: 680px) {
    .testimonials .section-title {
        font-size: clamp(2.28rem, 10.5vw, 2.85rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.045em !important;
        max-width: 355px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 380px) {
    .testimonials .section-title {
        font-size: clamp(2.05rem, 10vw, 2.45rem) !important;
        max-width: 320px !important;
    }
}

/* ============================================
   PORTFOLIO HOME - RANDOM 6 + NICHE FILTER CARDS
   ============================================ */
.portfolio-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 900px;
    margin: -1.25rem auto 2rem;
    padding: 1.05rem 1.2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(14, 165, 233, 0.16);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.07), rgba(16, 185, 129, 0.05));
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.045);
    color: var(--text-light-secondary);
}

.portfolio-notice-box .material-symbols-rounded {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.11);
    color: var(--accent);
    font-size: 20px;
}

.portfolio-notice-box p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    text-align: left;
}

.portfolio-filters {
    gap: 0.75rem !important;
    margin-bottom: 2.4rem !important;
}

.portfolio-filters .portfolio-filter-card,
.portfolio-filters .filter-btn.portfolio-filter-card {
    min-height: 66px !important;
    padding: 0.75rem 0.95rem !important;
    border-radius: 1.15rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(203, 213, 225, 0.78) !important;
    color: var(--text-light) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045) !important;
    text-align: left !important;
}

.portfolio-filters .portfolio-filter-card:hover,
.portfolio-filters .filter-btn.portfolio-filter-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(14, 165, 233, 0.36) !important;
    box-shadow: 0 18px 38px rgba(14, 165, 233, 0.09) !important;
}

.portfolio-filters .portfolio-filter-card.active,
.portfolio-filters .filter-btn.portfolio-filter-card.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(34, 211, 238, 0.12)) !important;
    border-color: rgba(14, 165, 233, 0.42) !important;
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.14) !important;
}

.portfolio-filter-card .filter-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: var(--accent);
    font-size: 20px;
}

.portfolio-filter-card .filter-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.portfolio-filter-card .filter-label {
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    white-space: nowrap;
}

.portfolio-filter-card .filter-count {
    font-size: 0.72rem;
    line-height: 1.1;
    font-weight: 650;
    color: var(--text-light-tertiary);
    white-space: nowrap;
}

.portfolio-filter-card.active .filter-icon {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 680px) {
    .portfolio-notice-box {
        margin: -0.8rem auto 1.55rem;
        padding: 0.95rem 1rem;
        border-radius: 1rem;
    }

    .portfolio-notice-box p {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .portfolio-notice-box .material-symbols-rounded {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 18px;
    }

    .portfolio-filters {
        padding: 0 1.25rem 1rem !important;
        gap: 0.7rem !important;
    }

    .portfolio-filters .portfolio-filter-card,
    .portfolio-filters .filter-btn.portfolio-filter-card {
        flex: 0 0 auto !important;
        min-width: 156px !important;
        min-height: 62px !important;
        padding: 0.7rem 0.82rem !important;
        border-radius: 1rem !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .portfolio-filter-card .filter-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 18px;
    }

    .portfolio-filter-card .filter-label {
        font-size: 0.82rem;
    }

    .portfolio-filter-card .filter-count {
        font-size: 0.68rem;
    }
}

/* ============================================
   DM v1.3.7 POLISH: pricing, hero, trust, Elementor
   ============================================ */

/* Safety: text fields imported with literal <br> should not break pricing visual rhythm */
.pricing-desc br { display: none !important; }

/* Featured / Most Popular pricing card: more visible, animated blue border */
.pricing-card.pricing-featured {
    position: relative !important;
    overflow: visible !important;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(56,189,248,.95), rgba(34,211,238,.65), rgba(52,211,153,.75), rgba(56,189,248,.95)) border-box !important;
    border: 1.5px solid transparent !important;
    box-shadow:
        0 26px 70px rgba(14, 165, 233, 0.14),
        0 0 0 5px rgba(14, 165, 233, 0.07) !important;
    transform: scale(1.035) !important;
}

.pricing-card.pricing-featured::before {
    content: "" !important;
    position: absolute !important;
    inset: -4px !important;
    z-index: -1 !important;
    border-radius: calc(var(--radius-2xl) + 5px) !important;
    background: conic-gradient(from 0deg, rgba(56,189,248,.0), rgba(56,189,248,.7), rgba(34,211,238,.45), rgba(52,211,153,.65), rgba(56,189,248,.0)) !important;
    filter: blur(10px) !important;
    opacity: .55 !important;
    animation: dmPricingGlow 5s linear infinite !important;
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.035) translateY(-7px) !important;
    box-shadow:
        0 34px 86px rgba(14, 165, 233, 0.20),
        0 0 0 6px rgba(14, 165, 233, 0.10) !important;
}

.pricing-card.pricing-featured .pricing-badge {
    background: linear-gradient(135deg, #0ea5e9, #22d3ee, #10b981) !important;
    box-shadow: 0 12px 30px rgba(14,165,233,.28) !important;
}

@keyframes dmPricingGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero ambient glow */
.hero-ambient-orb {
    position: absolute;
    width: 440px;
    height: 440px;
    right: 4%;
    top: 14%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, rgba(56,189,248,.22), transparent 48%),
        radial-gradient(circle at 70% 70%, rgba(52,211,153,.15), transparent 52%);
    filter: blur(28px);
    opacity: .85;
    pointer-events: none;
    z-index: 0;
    animation: dmHeroOrbFloat 9s ease-in-out infinite;
}

@keyframes dmHeroOrbFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(-18px,14px,0) scale(1.05); }
}

.hero-floating-badge.core-vitals strong,
.hero-floating-badge.core-vitals .hero-score {
    color: #22c55e !important;
    text-shadow: 0 0 18px rgba(34,197,94,.32) !important;
}

.hero-floating-badge.load-time strong {
    color: #fbbf24 !important;
    text-shadow: 0 0 18px rgba(251,191,36,.34) !important;
}

.hero-floating-badge.load-time .material-symbols-rounded {
    color: #fbbf24 !important;
}

.hero-floating-badge.tertiary {
    top: auto;
    bottom: 74px;
    right: -18px;
    animation-delay: 1.5s;
}

.hero-floating-badge.seo-badge strong {
    color: #67e8f9 !important;
    text-shadow: 0 0 18px rgba(103,232,249,.28) !important;
}

/* Trust marquee smoother + desktop tooltip */
.trust-track {
    animation-duration: 62s !important;
    will-change: transform !important;
    transform: translate3d(0,0,0);
}

.trust-item {
    position: relative !important;
    padding: .15rem 1.5rem !important;
    transform: translateZ(0);
}

@media (min-width: 901px) {
    .trust-item::after {
        content: attr(data-trust-tooltip);
        position: absolute;
        left: 50%;
        bottom: calc(100% + 12px);
        transform: translateX(-50%) translateY(6px);
        width: max-content;
        max-width: 230px;
        padding: .55rem .75rem;
        border-radius: .8rem;
        background: rgba(15,16,20,.96);
        border: 1px solid rgba(56,189,248,.22);
        box-shadow: 0 16px 44px rgba(0,0,0,.35), 0 0 22px rgba(14,165,233,.12);
        color: #eef2ff;
        font-size: .72rem;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease;
        z-index: 20;
    }

    .trust-item:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Elementor Pro section */
.elementor-pro {
    padding: var(--section-spacing) 0;
    overflow: hidden;
}

.elementor-pro-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.elementor-pro-content .section-header,
.elementor-pro-content .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.elementor-pro-subtitle {
    max-width: 620px !important;
    margin: 0 0 1.25rem !important;
}

.elementor-pro-copy {
    display: grid;
    gap: .85rem;
    color: var(--text-light-secondary);
    line-height: 1.72;
    max-width: 640px;
}

.elementor-pro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.elementor-pro-badges span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem .95rem;
    border-radius: 999px;
    background: rgba(14,165,233,.08);
    border: 1px solid rgba(14,165,233,.16);
    color: #0f172a;
    font-size: .83rem;
    font-weight: 750;
}

.elementor-pro-badges .material-symbols-rounded {
    color: #0ea5e9;
    font-size: 18px;
}

.elementor-pro-showcase {
    position: relative;
    min-height: 520px;
    padding: 1.25rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 20% 0%, rgba(14,165,233,.12), transparent 42%),
        radial-gradient(circle at 100% 90%, rgba(16,185,129,.10), transparent 48%),
        rgba(255,255,255,.72);
    border: 1px solid rgba(14,165,233,.14);
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.upwork-floating-badge {
    position: absolute;
    z-index: 4;
    top: -18px;
    right: 26px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: .45rem;
    align-items: center;
    padding: .7rem .95rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(34,197,94,.22);
    box-shadow: 0 18px 44px rgba(16,185,129,.16);
    color: #0f172a;
}

.upwork-floating-badge .material-symbols-rounded {
    grid-row: span 2;
    color: #16a34a;
    font-size: 22px;
}

.upwork-floating-badge strong { font-size: .84rem; line-height: 1; }
.upwork-floating-badge small { font-size: .68rem; color: #16a34a; font-weight: 800; }

.elementor-sites-rail {
    max-height: 520px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.6rem .45rem 1.6rem .2rem;
    display: grid;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(14,165,233,.35) transparent;
}

.elementor-sites-rail::-webkit-scrollbar { width: 7px; }
.elementor-sites-rail::-webkit-scrollbar-track { background: transparent; }
.elementor-sites-rail::-webkit-scrollbar-thumb { background: rgba(14,165,233,.35); border-radius: 99px; }

.elementor-site-card {
    position: relative;
    display: grid;
    grid-template-columns: 118px 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 118px;
    padding: .8rem .95rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(203,213,225,.85);
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.elementor-site-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14,165,233,.35);
    box-shadow: 0 20px 55px rgba(14,165,233,.12);
}

.elementor-site-thumb {
    height: 82px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(16,185,129,.08));
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.elementor-site-thumb.has-thumb::before {
    content: "";
    position: absolute;
}

.elementor-site-thumb .material-symbols-rounded {
    color: #0ea5e9;
    font-size: 30px;
    filter: drop-shadow(0 4px 14px rgba(14,165,233,.18));
}

.elementor-site-thumb.has-thumb .material-symbols-rounded {
    color: #ffffff;
    text-shadow: 0 3px 16px rgba(0,0,0,.45);
}

.elementor-site-info strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.2;
    margin-bottom: .3rem;
}

.elementor-site-info p {
    margin: 0;
    color: #64748b;
    font-size: .82rem;
    line-height: 1.45;
}

.elementor-site-arrow {
    color: #0ea5e9;
    font-size: 21px;
}

/* Mobile polish requested */
@media (max-width: 680px) {
    .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-badge {
        align-self: flex-start !important;
        text-align: left !important;
    }

    .hero-headline {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .headline-line {
        font-size: clamp(3.05rem, 15vw, 4.25rem) !important;
        line-height: .98 !important;
        text-align: left !important;
    }

    .hero-description {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-ambient-orb {
        width: 320px;
        height: 320px;
        right: -90px;
        top: 90px;
        opacity: .62;
    }

    .services .section-subtitle {
        font-size: .98rem !important;
        line-height: 1.48 !important;
        max-width: 330px !important;
    }

    .comparison-tabs,
    .portfolio-filters {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        padding: .25rem var(--container-padding) .65rem !important;
        margin-left: calc(var(--container-padding) * -1) !important;
        margin-right: calc(var(--container-padding) * -1) !important;
    }

    .comparison-tabs::-webkit-scrollbar,
    .portfolio-filters::-webkit-scrollbar { display: none !important; }

    .comparison-tabs .tab,
    .portfolio-filters .filter-btn,
    .portfolio-filters .portfolio-filter-card {
        flex: 0 0 auto !important;
        scroll-snap-align: start;
        white-space: nowrap !important;
    }

    .portfolio-filters .portfolio-filter-card {
        min-width: 148px !important;
        padding: .72rem .85rem !important;
        border-radius: 1rem !important;
    }

    #testimonials .section-title {
        font-size: clamp(2.42rem, 11.4vw, 3.05rem) !important;
        line-height: 1.02 !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-floating-badge.tertiary { display: none !important; }

    .elementor-pro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .elementor-pro-content .section-title,
    .elementor-pro-content .section-tag,
    .elementor-pro-content .section-subtitle,
    .elementor-pro-copy {
        text-align: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .elementor-pro-badges {
        justify-content: center;
    }

    .elementor-pro-showcase {
        min-height: auto;
        padding: 1rem;
        border-radius: 1.4rem;
    }

    .upwork-floating-badge {
        position: relative;
        top: auto;
        right: auto;
        width: fit-content;
        margin: 0 auto 1rem;
    }

    .elementor-sites-rail {
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }

    .elementor-site-card {
        grid-template-columns: 82px 1fr auto;
        min-height: 96px;
        gap: .75rem;
        padding: .72rem;
        border-radius: 1.1rem;
    }

    .elementor-site-thumb {
        height: 66px;
        border-radius: .85rem;
    }

    .elementor-site-info p {
        display: none;
    }
}

@media (max-width: 420px) {
    .headline-line {
        font-size: clamp(2.75rem, 14.4vw, 3.65rem) !important;
    }

    .portfolio-filters .portfolio-filter-card {
        min-width: 138px !important;
    }
}

/* ============================================
   HERO STATS - FINAL GLASS DESIGN
   Desktop + Tablet + Mobile
   ============================================ */
.hero-stats {
    width: 100% !important;
    max-width: 650px !important;
    margin: 1rem 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
}
.hero-stats .stat {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0.42rem !important;
    min-height: 118px !important;
    padding: 1.15rem !important;
    border-radius: 1.35rem !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.13), inset 0 -1px 0 rgba(255,255,255,0.035) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease !important;
}
.hero-stats .stat::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    z-index: -2 !important;
    background: radial-gradient(circle at 18% 12%, rgba(56,189,248,0.26), transparent 38%), radial-gradient(circle at 90% 100%, rgba(52,211,153,0.16), transparent 42%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.035), transparent 55%) !important;
    opacity: .95 !important;
}
.hero-stats .stat::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 1rem !important;
    right: 1rem !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #38bdf8, #22d3ee, #34d399) !important;
    opacity: .85 !important;
}
.hero-stats .stat:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(56,189,248,.34) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)) !important;
    box-shadow: 0 28px 70px rgba(0,0,0,.34), 0 0 34px rgba(14,165,233,.13), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.hero-stats .stat-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    gap: 0.18rem !important;
    line-height: 1 !important;
}
.hero-stats .stat-number {
    display: inline-block !important;
    font-size: clamp(2rem, 3vw, 2.65rem) !important;
    line-height: .95 !important;
    font-weight: 900 !important;
    letter-spacing: -0.06em !important;
    color: #fff !important;
    text-shadow: 0 12px 30px rgba(0,0,0,.28) !important;
}
.hero-stats .stat-plus {
    display: inline-block !important;
    font-size: 1.45rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    color: #38bdf8 !important;
    text-shadow: 0 0 20px rgba(56,189,248,.48) !important;
}
.hero-stats .stat-label {
    display: block !important;
    max-width: 155px !important;
    font-size: .78rem !important;
    line-height: 1.35 !important;
    font-weight: 650 !important;
    letter-spacing: -0.012em !important;
    color: rgba(238,239,244,.68) !important;
    white-space: normal !important;
}
@media (max-width: 980px) {
    .hero-stats { max-width: 100% !important; gap: .8rem !important; }
    .hero-stats .stat { min-height: 108px !important; padding: 1rem !important; border-radius: 1.15rem !important; }
    .hero-stats .stat-number { font-size: clamp(1.75rem, 4vw, 2.2rem) !important; }
    .hero-stats .stat-plus { font-size: 1.22rem !important; }
    .hero-stats .stat-label { font-size: .72rem !important; line-height: 1.28 !important; }
}
@media (max-width: 680px) {
    .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: .55rem !important; max-width: 100% !important; margin: .9rem 0 0 !important; }
    .hero-stats .stat {
        min-height: 98px !important;
        padding: .85rem .55rem !important;
        border-radius: .95rem !important;
        gap: .35rem !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: 1px solid rgba(255,255,255,.115) !important;
        background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)) !important;
        box-shadow: 0 16px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.13) !important;
        backdrop-filter: blur(16px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
    }
    .hero-stats .stat::before { background: radial-gradient(circle at 18% 12%, rgba(56,189,248,.20), transparent 40%), radial-gradient(circle at 100% 100%, rgba(52,211,153,.12), transparent 44%) !important; }
    .hero-stats .stat::after { left: .62rem !important; right: .62rem !important; height: 2px !important; }
    .hero-stats .stat-row { width: 100% !important; justify-content: center !important; gap: .12rem !important; }
    .hero-stats .stat-number { font-size: clamp(1.65rem, 9vw, 2.15rem) !important; line-height: .96 !important; letter-spacing: -0.055em !important; text-align: center !important; }
    .hero-stats .stat-plus { font-size: 1.12rem !important; line-height: 1 !important; }
    .hero-stats .stat-label { max-width: none !important; width: 100% !important; font-size: .64rem !important; line-height: 1.22 !important; font-weight: 650 !important; color: rgba(238,239,244,.70) !important; white-space: normal !important; text-align: center !important; }
}
@media (max-width: 420px) {
    .hero-stats { gap: .42rem !important; }
    .hero-stats .stat { min-height: 90px !important; padding: .72rem .45rem !important; border-radius: .82rem !important; }
    .hero-stats .stat::after { left: .48rem !important; right: .48rem !important; }
    .hero-stats .stat-number { font-size: 1.55rem !important; }
    .hero-stats .stat-plus { font-size: 1rem !important; }
    .hero-stats .stat-label { font-size: .58rem !important; line-height: 1.18 !important; }
}
@media (max-width: 360px) {
    .hero-stats { gap: .35rem !important; }
    .hero-stats .stat { padding: .62rem .35rem !important; min-height: 86px !important; }
    .hero-stats .stat-number { font-size: 1.38rem !important; }
    .hero-stats .stat-plus { font-size: .9rem !important; }
    .hero-stats .stat-label { font-size: .52rem !important; line-height: 1.15 !important; }
}

/* ============================================
   DM v1.3.8 POLISH: cleaner pricing featured + Elementor cards
   ============================================ */

/* Cleaner Most Popular price card: subtle border animation, no heavy full-card wash */
.pricing-card.pricing-featured {
    position: relative !important;
    overflow: visible !important;
    background:
        radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.10), transparent 34%),
        radial-gradient(circle at 14% 92%, rgba(16, 185, 129, 0.08), transparent 36%),
        #ffffff !important;
    border: 1px solid rgba(56, 189, 248, 0.42) !important;
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.08),
        0 0 0 4px rgba(14, 165, 233, 0.045) !important;
    transform: scale(1.025) !important;
}

.pricing-card.pricing-featured::before {
    content: "" !important;
    position: absolute !important;
    inset: -2px !important;
    z-index: 0 !important;
    border-radius: calc(var(--radius-2xl) + 2px) !important;
    padding: 2px !important;
    background: conic-gradient(from var(--dm-price-angle, 0deg), #38bdf8, #22d3ee, #10b981, #38bdf8) !important;
    opacity: 0.82 !important;
    filter: none !important;
    animation: dmPricingBorderSpin 7s linear infinite !important;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    pointer-events: none !important;
}

.pricing-card.pricing-featured::after {
    content: "" !important;
    position: absolute !important;
    inset: 10px !important;
    z-index: 0 !important;
    border-radius: calc(var(--radius-2xl) - 6px) !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.14), transparent 36%),
        radial-gradient(circle at 0% 100%, rgba(52, 211, 153, 0.10), transparent 38%) !important;
    pointer-events: none !important;
}

.pricing-card.pricing-featured > * {
    position: relative !important;
    z-index: 2 !important;
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.025) translateY(-7px) !important;
    box-shadow:
        0 34px 86px rgba(14, 165, 233, 0.14),
        0 0 0 5px rgba(14, 165, 233, 0.07) !important;
}

.pricing-card.pricing-featured .pricing-badge {
    z-index: 4 !important;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #10b981) !important;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.28) !important;
}

@keyframes dmPricingBorderSpin {
    to { --dm-price-angle: 360deg; }
}

@supports not ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
    .pricing-card.pricing-featured::before {
        opacity: 0 !important;
    }
}

/* Elementor Pro section: more exclusive and cleaner */
.elementor-pro {
    background:
        radial-gradient(circle at 12% 10%, rgba(14, 165, 233, 0.08), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(16, 185, 129, 0.07), transparent 30%),
        var(--bg-light) !important;
}

.elementor-pro-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    gap: 3.25rem !important;
}

.elementor-pro-content .section-tag {
    background: rgba(14, 165, 233, 0.09) !important;
    border-color: rgba(14, 165, 233, 0.18) !important;
    color: #0284c7 !important;
}

.elementor-pro-content .section-title {
    max-width: 640px !important;
}

.elementor-pro-copy {
    margin-top: 1rem !important;
}

.elementor-pro-copy p {
    margin: 0 !important;
    padding: 1rem 1.1rem !important;
    border-radius: 1.1rem !important;
    background: rgba(255, 255, 255, 0.70) !important;
    border: 1px solid rgba(203, 213, 225, 0.62) !important;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045) !important;
}

.elementor-pro-badges span {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(14, 165, 233, 0.18) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
}

.elementor-pro-showcase {
    min-height: auto !important;
    padding: 1.35rem !important;
    border-radius: 2rem !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
        radial-gradient(circle at 15% 0%, rgba(14,165,233,.14), transparent 38%),
        radial-gradient(circle at 100% 90%, rgba(16,185,129,.10), transparent 42%) !important;
    border: 1px solid rgba(14,165,233,.14) !important;
    box-shadow: 0 26px 80px rgba(15,23,42,.09) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.upwork-floating-badge {
    top: -22px !important;
    right: 28px !important;
    border-radius: 1.15rem !important;
    background: linear-gradient(145deg, #ffffff, #f6fff9) !important;
}

.elementor-sites-rail {
    max-height: 640px !important;
    overflow-y: auto !important;
    padding: 2rem 0.25rem 0.25rem !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

.elementor-site-card {
    position: relative !important;
    display: block !important;
    min-height: 218px !important;
    padding: 0 !important;
    border-radius: 1.35rem !important;
    overflow: hidden !important;
    background: #0f172a !important;
    border: 1px solid rgba(203, 213, 225, 0.70) !important;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10) !important;
    isolation: isolate !important;
}

.elementor-site-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(14, 165, 233, 0.40) !important;
    box-shadow: 0 26px 70px rgba(14, 165, 233, 0.16) !important;
}

.elementor-site-thumb {
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(16,185,129,.11)) !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 520ms ease, filter 520ms ease !important;
}

.elementor-site-thumb.has-thumb {
    background-size: cover !important;
    background-position: center !important;
}

.elementor-site-card:hover .elementor-site-thumb {
    transform: scale(1.06) !important;
    filter: saturate(1.08) contrast(1.03) !important;
}

.elementor-site-thumb::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(2,6,23,0.06) 0%, rgba(2,6,23,0.30) 44%, rgba(2,6,23,0.82) 100%),
        radial-gradient(circle at 80% 10%, rgba(14,165,233,.25), transparent 34%) !important;
    opacity: 0.92 !important;
}

.elementor-site-thumb .material-symbols-rounded {
    position: absolute !important;
    left: 1rem !important;
    top: 1rem !important;
    z-index: 2 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.16) !important;
    color: #ffffff !important;
    font-size: 22px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.elementor-site-info {
    position: absolute !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    z-index: 3 !important;
    transform: translateY(18px) !important;
    transition: transform 260ms ease !important;
}

.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    transform: translateY(0) !important;
}

.elementor-site-info strong {
    color: #ffffff !important;
    font-size: 1.02rem !important;
    font-weight: 850 !important;
    line-height: 1.16 !important;
    text-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
}

.elementor-site-info p {
    display: block !important;
    margin-top: .45rem !important;
    color: rgba(255,255,255,.78) !important;
    font-size: .78rem !important;
    line-height: 1.38 !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: opacity 260ms ease, max-height 260ms ease !important;
}

.elementor-site-card:hover .elementor-site-info p,
.elementor-site-card:focus-visible .elementor-site-info p {
    opacity: 1 !important;
    max-height: 80px !important;
}

.elementor-site-arrow {
    position: absolute !important;
    right: 1rem !important;
    top: 1rem !important;
    z-index: 4 !important;
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.92) !important;
    color: #0284c7 !important;
    font-size: 19px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.16) !important;
}

@media (max-width: 980px) {
    .elementor-pro-grid {
        grid-template-columns: 1fr !important;
    }

    .elementor-sites-rail {
        max-height: none !important;
        overflow-y: visible !important;
    }
}

@media (max-width: 680px) {
    .pricing-card.pricing-featured {
        transform: none !important;
    }

    .pricing-card.pricing-featured:hover {
        transform: translateY(-4px) !important;
    }

    .elementor-sites-rail {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .elementor-site-card {
        min-height: 210px !important;
    }

    .elementor-site-info,
    .elementor-site-card:hover .elementor-site-info,
    .elementor-site-card:focus-visible .elementor-site-info {
        transform: none !important;
    }

    .elementor-site-info p {
        display: none !important;
    }
}

/* ============================================
   DM v1.3.9 - Smooth Elementor Pro polish
   Lighter hover feel, no heavy showcase box, scroll only on hover
   ============================================ */

/* Keep the pricing featured card clean and fast. */
.pricing-card.pricing-featured {
    background: #ffffff !important;
    border: 1px solid rgba(14, 165, 233, 0.34) !important;
    box-shadow:
        0 20px 54px rgba(15, 23, 42, 0.075),
        0 0 0 4px rgba(14, 165, 233, 0.055) !important;
    transform: none !important;
    will-change: transform !important;
}

.pricing-card.pricing-featured::before,
.pricing-card.pricing-featured::after {
    animation: none !important;
}

.pricing-card.pricing-featured:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 26px 68px rgba(15, 23, 42, 0.105),
        0 0 0 4px rgba(14, 165, 233, 0.08) !important;
}

/* Elementor Pro section: cleaner, lighter, less laggy. */
.elementor-pro {
    background:
        radial-gradient(circle at 9% 10%, rgba(14, 165, 233, 0.07), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(16, 185, 129, 0.055), transparent 32%),
        var(--bg-light) !important;
}

.elementor-pro-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
    gap: clamp(2rem, 5vw, 4rem) !important;
    align-items: center !important;
}

.elementor-pro-content .section-title {
    max-width: 680px !important;
}

.elementor-pro-subtitle {
    max-width: 650px !important;
}

.elementor-pro-copy {
    display: grid !important;
    gap: .85rem !important;
    margin-top: 1.05rem !important;
}

.elementor-pro-copy p {
    margin: 0 !important;
    padding: 1rem 1.05rem !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.66) !important;
    border: 1px solid rgba(203, 213, 225, 0.72) !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.038) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.elementor-pro-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .7rem !important;
    margin-top: 1.25rem !important;
}

.elementor-pro-badges span {
    display: inline-flex !important;
    align-items: center !important;
    gap: .45rem !important;
    padding: .72rem .98rem !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid rgba(14, 165, 233, 0.18) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
    color: #0f172a !important;
    font-size: .84rem !important;
    font-weight: 800 !important;
}

.elementor-pro-badges span:nth-child(3) {
    border-color: rgba(34, 197, 94, .28) !important;
    background: linear-gradient(135deg, #ffffff, #f2fff6) !important;
}

.elementor-pro-badges span:nth-child(3) .material-symbols-rounded {
    color: #16a34a !important;
}

/* Old floating Upwork badge disabled: badge now lives inline with the others. */
.upwork-floating-badge {
    display: none !important;
}

/* Remove the big white showcase container. The site cards sit directly on the section. */
.elementor-pro-showcase {
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative !important;
}

.elementor-sites-rail {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    padding: .15rem .2rem .35rem !important;
    max-height: 500px !important;
    overflow-y: hidden !important;
    overscroll-behavior: contain !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(14, 165, 233, .38) transparent !important;
}

.elementor-pro-showcase:hover .elementor-sites-rail,
.elementor-pro-showcase:focus-within .elementor-sites-rail {
    overflow-y: auto !important;
}

.elementor-sites-rail::-webkit-scrollbar { width: 7px !important; }
.elementor-sites-rail::-webkit-scrollbar-track { background: transparent !important; }
.elementor-sites-rail::-webkit-scrollbar-thumb { background: rgba(14,165,233,.35) !important; border-radius: 999px !important; }

.elementor-site-card {
    position: relative !important;
    display: block !important;
    min-height: 236px !important;
    padding: 0 !important;
    border-radius: 1.35rem !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background: #0f172a !important;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11) !important;
    transform: translateZ(0) !important;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
    will-change: transform !important;
}

.elementor-site-card:hover,
.elementor-site-card:focus-visible {
    transform: translateY(-3px) translateZ(0) !important;
    border-color: rgba(14, 165, 233, 0.38) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16) !important;
}

.elementor-site-thumb {
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(16,185,129,.13)) !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 240ms ease !important;
    filter: none !important;
}

.elementor-site-thumb.has-thumb {
    background-size: cover !important;
    background-position: center !important;
}

.elementor-site-card:hover .elementor-site-thumb,
.elementor-site-card:focus-visible .elementor-site-thumb {
    transform: scale(1.035) !important;
    filter: none !important;
}

.elementor-site-thumb::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(2,6,23,0.06) 0%, rgba(2,6,23,0.32) 45%, rgba(2,6,23,0.86) 100%),
        radial-gradient(circle at 80% 10%, rgba(14,165,233,.20), transparent 32%) !important;
    opacity: .95 !important;
}

.elementor-site-thumb .material-symbols-rounded {
    position: absolute !important;
    left: 1rem !important;
    top: 1rem !important;
    z-index: 2 !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.18) !important;
    color: #ffffff !important;
    font-size: 21px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.elementor-site-info {
    position: absolute !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    z-index: 3 !important;
    transform: translateY(18px) !important;
    transition: transform 180ms ease !important;
}

.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    transform: translateY(0) !important;
}

.elementor-site-info strong {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 850 !important;
    line-height: 1.16 !important;
    text-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
}

.elementor-site-info p {
    display: block !important;
    margin: .45rem 0 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: .78rem !important;
    line-height: 1.38 !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: opacity 180ms ease, max-height 180ms ease !important;
}

.elementor-site-card:hover .elementor-site-info p,
.elementor-site-card:focus-visible .elementor-site-info p {
    opacity: 1 !important;
    max-height: 84px !important;
}

.elementor-site-arrow {
    position: absolute !important;
    right: 1rem !important;
    top: 1rem !important;
    z-index: 4 !important;
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.94) !important;
    color: #0284c7 !important;
    font-size: 19px !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.13) !important;
}

/* Smoothness: avoid heavy filters/animations where they are not essential. */
.elementor-pro *,
.pricing-card.pricing-featured * {
    backface-visibility: hidden !important;
}

@media (max-width: 980px) {
    .elementor-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .elementor-pro-content .section-title,
    .elementor-pro-content .section-tag,
    .elementor-pro-content .section-subtitle,
    .elementor-pro-copy {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .elementor-pro-badges {
        justify-content: center !important;
    }

    .elementor-sites-rail {
        max-height: none !important;
        overflow-y: visible !important;
    }
}

@media (max-width: 680px) {
    .elementor-sites-rail {
        grid-template-columns: 1fr !important;
        gap: .9rem !important;
        padding: 0 !important;
    }

    .elementor-site-card {
        min-height: 220px !important;
    }

    .elementor-site-info,
    .elementor-site-card:hover .elementor-site-info,
    .elementor-site-card:focus-visible .elementor-site-info {
        transform: none !important;
    }

    .elementor-site-info p {
        display: none !important;
    }
}

/* ============================================
   Elementor Pro section polish v1.4.0
   Cleaner brand badges + lifted showcase overlays
   ============================================ */

.elementor-pro-grid {
    align-items: center !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 1.75rem auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.85rem !important;
}

.elementor-pro-badges .elementor-badge,
.elementor-pro-badges.elementor-pro-badges-bottom .elementor-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    min-height: 54px !important;
    padding: 0.62rem 1.05rem 0.62rem 0.68rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06) !important;
    color: #0f172a !important;
    font-size: 0.88rem !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    transform: translateZ(0) !important;
}

.elementor-pro-badges .elementor-badge > .material-symbols-rounded {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 19px !important;
    line-height: 1 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.elementor-pro-badges .elementor-badge strong {
    display: block !important;
    font: inherit !important;
    color: inherit !important;
    margin: 0 !important;
}

.elementor-pro-badges .elementor-badge-pro {
    border-color: rgba(146, 0, 59, 0.28) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 248, 0.9)) !important;
    box-shadow: 0 14px 34px rgba(146, 0, 59, 0.08) !important;
}

.elementor-pro-badges .elementor-badge-pro > .material-symbols-rounded {
    color: #92003b !important;
    background: rgba(146, 0, 59, 0.09) !important;
}

.elementor-pro-badges .elementor-badge-sites {
    border-color: rgba(14, 165, 233, 0.18) !important;
    background: rgba(255, 255, 255, 0.92) !important;
}

.elementor-pro-badges .elementor-badge-sites > .material-symbols-rounded {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.09) !important;
}

.elementor-pro-badges .elementor-badge-upwork {
    border-color: rgba(20, 168, 0, 0.30) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 255, 237, 0.92)) !important;
    box-shadow: 0 14px 34px rgba(20, 168, 0, 0.09) !important;
}

.elementor-pro-badges .elementor-badge-upwork > .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(20, 168, 0, 0.10) !important;
}

.elementor-site-card {
    min-height: 248px !important;
    border-radius: 1.35rem !important;
}

.elementor-site-info {
    left: 1.15rem !important;
    right: 1.15rem !important;
    bottom: 1.55rem !important;
    padding: 0.82rem 0.9rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.46)) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    transform: translateY(12px) !important;
}

.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    transform: translateY(-4px) !important;
}

.elementor-site-info strong {
    display: block !important;
    padding-right: 2.2rem !important;
}

.elementor-site-info p {
    margin-top: 0.5rem !important;
}

.elementor-site-arrow {
    top: 1.15rem !important;
    right: 1.15rem !important;
}

@media (max-width: 980px) {
    .elementor-pro-badges.elementor-pro-badges-bottom {
        margin-top: 0.35rem !important;
        justify-content: center !important;
    }
}

@media (max-width: 680px) {
    .elementor-pro-badges.elementor-pro-badges-bottom {
        gap: 0.65rem !important;
    }

    .elementor-pro-badges .elementor-badge,
    .elementor-pro-badges.elementor-pro-badges-bottom .elementor-badge {
        width: 100% !important;
        max-width: 330px !important;
        min-height: 50px !important;
        justify-content: flex-start !important;
        padding: 0.56rem 0.92rem 0.56rem 0.62rem !important;
        font-size: 0.84rem !important;
    }

    .elementor-pro-badges .elementor-badge > .material-symbols-rounded {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        font-size: 17px !important;
    }

    .elementor-site-card {
        min-height: 230px !important;
    }

    .elementor-site-info,
    .elementor-site-card:hover .elementor-site-info,
    .elementor-site-card:focus-visible .elementor-site-info {
        bottom: 1.2rem !important;
        transform: none !important;
        padding: 0.75rem 0.82rem !important;
    }
}


/* ============================================
   DM v1.4.1 - Pricing + Elementor final polish
   ============================================ */

/* Mobile hero: a touch smaller, left aligned. */
@media (max-width: 680px) {
    .hero-content,
    .hero-badge,
    .hero-headline,
    .hero-description {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .hero .headline-line {
        font-size: clamp(2.22rem, 10.8vw, 3rem) !important;
        line-height: 1.04 !important;
        letter-spacing: -0.055em !important;
    }
}

/* Pricing featured card: clean border, badge centered on top border. */
.pricing-card.pricing-featured {
    position: relative !important;
    padding-top: 2.65rem !important;
    border: 2px solid transparent !important;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, #38bdf8, #22d3ee, #10b981, #38bdf8) border-box !important;
    box-shadow:
        0 22px 58px rgba(15, 23, 42, 0.08),
        0 0 0 4px rgba(14, 165, 233, 0.055) !important;
    overflow: visible !important;
    transform: none !important;
}

.pricing-card.pricing-featured::before,
.pricing-card.pricing-featured::after {
    display: none !important;
    content: none !important;
}

.pricing-card.pricing-featured .pricing-badge {
    position: absolute !important;
    top: -18px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 150px !important;
    max-width: calc(100% - 3rem) !important;
    height: 36px !important;
    padding: 0 1.2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #10b981) !important;
    color: #ffffff !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow:
        0 12px 28px rgba(14, 165, 233, 0.24),
        0 0 0 5px #ffffff !important;
    z-index: 4 !important;
}

.pricing-card.pricing-featured:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.12),
        0 0 0 4px rgba(14, 165, 233, 0.08) !important;
}

@media (max-width: 680px) {
    .pricing-card.pricing-featured {
        padding-top: 2.35rem !important;
    }

    .pricing-card.pricing-featured .pricing-badge {
        height: 34px !important;
        min-width: 138px !important;
        font-size: 0.78rem !important;
    }
}

/* Elementor brand palette + copy cards. */
.elementor-pro {
    background:
        radial-gradient(circle at 8% 12%, rgba(237, 1, 238, 0.065), transparent 27%),
        radial-gradient(circle at 86% 20%, rgba(255, 123, 229, 0.075), transparent 26%),
        radial-gradient(circle at 92% 88%, rgba(14, 165, 233, 0.06), transparent 32%),
        var(--bg-light) !important;
}

.elementor-pro .text-gradient {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.elementor-pro-content .section-tag {
    color: #a000b3 !important;
    background: rgba(237, 1, 238, 0.075) !important;
    border-color: rgba(237, 1, 238, 0.14) !important;
}

.elementor-pro-copy {
    display: grid !important;
    gap: 1rem !important;
    margin-top: 1.15rem !important;
}

.elementor-pro-copy p {
    position: relative !important;
    margin: 0 !important;
    padding: 1.22rem 1.25rem 1.2rem 1.35rem !important;
    border-radius: 1.15rem !important;
    border: 1px solid rgba(237, 1, 238, 0.14) !important;
    border-left: 4px solid #ed01ee !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 184, 229, 0.22), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.68)) !important;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055) !important;
    color: #475569 !important;
    line-height: 1.7 !important;
}

.elementor-pro-copy p::before {
    content: "“" !important;
    position: absolute !important;
    top: -0.05rem !important;
    right: 1rem !important;
    color: rgba(237, 1, 238, 0.13) !important;
    font-size: 4.5rem !important;
    line-height: 1 !important;
    font-family: Georgia, serif !important;
    pointer-events: none !important;
}

.elementor-pro-copy p:nth-child(2) {
    border-left-color: #0ea5e9 !important;
    border-color: rgba(14, 165, 233, 0.14) !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.68)) !important;
}

.elementor-pro-copy p:nth-child(2)::before {
    color: rgba(14, 165, 233, 0.12) !important;
}

/* Elementor showcase: no background box, no bottom clipping, scroll only when useful. */
.elementor-pro-showcase {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: visible !important;
}

.elementor-sites-rail {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    max-height: 536px !important;
    overflow-y: hidden !important;
    overflow-x: visible !important;
    padding: 0.15rem 0.25rem 2.15rem !important;
    scroll-behavior: smooth !important;
    overscroll-behavior: contain !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(237, 1, 238, 0.32) transparent !important;
}

.elementor-pro-showcase.has-more-sites:hover .elementor-sites-rail,
.elementor-pro-showcase.has-more-sites:focus-within .elementor-sites-rail {
    overflow-y: auto !important;
}

.elementor-pro-showcase.has-more-sites::after {
    content: "Scroll for more examples" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0.15rem !important;
    transform: translateX(-50%) !important;
    z-index: 6 !important;
    padding: 0.48rem 0.78rem !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.86) !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18) !important;
    animation: dmScrollHint 2.2s ease-in-out infinite !important;
    pointer-events: none !important;
}

.elementor-pro-showcase.has-more-sites:hover::after,
.elementor-pro-showcase.has-more-sites:focus-within::after {
    opacity: 0 !important;
}

@keyframes dmScrollHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.elementor-sites-rail::-webkit-scrollbar { width: 8px !important; height: 8px !important; }
.elementor-sites-rail::-webkit-scrollbar-track { background: transparent !important; }
.elementor-sites-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ed01ee, #ff7be5) !important;
    border-radius: 999px !important;
}

.elementor-site-card {
    min-height: 250px !important;
    border-radius: 1.35rem !important;
    overflow: hidden !important;
    background: #0f172a !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10) !important;
}

.elementor-site-info,
.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    left: 1.05rem !important;
    right: 1.05rem !important;
    bottom: 2.05rem !important;
    transform: translateY(0) !important;
    padding: 0.85rem 0.9rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.72)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

.elementor-site-info p {
    opacity: 1 !important;
    max-height: 74px !important;
    overflow: hidden !important;
}

/* Elementor badges: one clean layer, icon left / text right. */
.elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 1.6rem auto 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
}

.elementor-pro-badges .elementor-badge,
.elementor-pro-badges.elementor-pro-badges-bottom .elementor-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.7rem !important;
    min-height: 52px !important;
    padding: 0.58rem 1.05rem 0.58rem 0.65rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055) !important;
    color: #0f172a !important;
    font-size: 0.86rem !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

.elementor-pro-badges .elementor-badge > .material-symbols-rounded,
.elementor-pro-badges .elementor-icon-img-wrap {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(15, 23, 42, 0.055) !important;
    color: inherit !important;
    box-shadow: none !important;
}

.elementor-pro-badges .elementor-icon-img-wrap img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    display: block !important;
}

.elementor-pro-badges .elementor-badge-pro {
    color: #ffffff !important;
    border-color: rgba(237, 1, 238, 0.22) !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    box-shadow: 0 14px 34px rgba(237, 1, 238, 0.16) !important;
}

.elementor-pro-badges .elementor-badge-pro .elementor-icon-img-wrap {
    background: rgba(255, 255, 255, 0.92) !important;
}

.elementor-pro-badges .elementor-badge-sites {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(148, 163, 184, 0.24) !important;
}

.elementor-pro-badges .elementor-badge-sites > .material-symbols-rounded {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.09) !important;
}

.elementor-pro-badges .elementor-badge-upwork {
    color: #0f3b08 !important;
    border-color: rgba(20, 168, 0, 0.24) !important;
    background: linear-gradient(135deg, #ffffff, #ecffe9) !important;
    box-shadow: 0 14px 34px rgba(20, 168, 0, 0.10) !important;
}

.elementor-pro-badges .elementor-badge-upwork > .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(20, 168, 0, 0.10) !important;
}

/* Mobile Elementor showcase: horizontal swipe, no clipping. */
@media (max-width: 680px) {
    .elementor-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 1.65rem !important;
    }

    .elementor-sites-rail {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0.9rem !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0.1rem 1rem 1rem 0.1rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .elementor-sites-rail::-webkit-scrollbar {
        display: none !important;
    }

    .elementor-site-card {
        min-width: 82vw !important;
        max-width: 82vw !important;
        min-height: 240px !important;
        scroll-snap-align: start !important;
    }

    .elementor-site-info,
    .elementor-site-card:hover .elementor-site-info,
    .elementor-site-card:focus-visible .elementor-site-info {
        bottom: 1.15rem !important;
        left: 0.9rem !important;
        right: 0.9rem !important;
    }

    .elementor-site-info p {
        display: block !important;
        font-size: 0.74rem !important;
        line-height: 1.32 !important;
    }

    .elementor-pro-showcase.has-more-sites::after {
        content: "Swipe for more" !important;
        bottom: -0.2rem !important;
        font-size: 0.7rem !important;
    }

    .elementor-pro-showcase.has-more-sites:hover::after,
    .elementor-pro-showcase.has-more-sites:focus-within::after {
        opacity: 1 !important;
    }

    .elementor-pro-badges.elementor-pro-badges-bottom {
        margin-top: 0.8rem !important;
        gap: 0.6rem !important;
    }

    .elementor-pro-badges .elementor-badge,
    .elementor-pro-badges.elementor-pro-badges-bottom .elementor-badge {
        width: 100% !important;
        max-width: 340px !important;
        font-size: 0.84rem !important;
    }
}

/* ============================================
   DM v1.4.2 - Final Elementor + logo radius fix
   ============================================ */

/* Header/footer logo mark: no rounded box when using custom SVG/icon. */
.logo-mark,
.footer-logo .logo-mark,
.header .logo-mark {
    border-radius: 0 !important;
}

.logo-mark.has-image,
.footer-logo .logo-mark.has-image,
.header .logo-mark.has-image {
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.logo-mark-img,
.logo-mark.has-image img,
.footer-logo .logo-mark-img,
.header .logo-mark-img {
    border-radius: 0 !important;
    object-fit: contain !important;
}

/* Elementor hero floating badge. */
.hero-floating-badge.elementor-expert-badge {
    top: auto !important;
    right: 1.4rem !important;
    bottom: 4.85rem !important;
    background: rgba(15, 16, 20, 0.96) !important;
    border-color: rgba(237, 1, 238, 0.28) !important;
    box-shadow: 0 18px 44px rgba(237, 1, 238, 0.12), var(--shadow-dark-lg) !important;
}

.elementor-mini-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}

.hero-floating-badge.elementor-expert-badge strong {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Elementor section: final layout and performance-friendly polish. */
.elementor-pro {
    overflow: hidden !important;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 184, 229, 0.13), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(237, 1, 238, 0.075), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(14, 165, 233, 0.055), transparent 32%),
        var(--bg-light) !important;
}

.elementor-pro-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
    gap: 3.4rem !important;
    align-items: center !important;
}

.elementor-pro-content .section-tag {
    color: #c000c9 !important;
    background: rgba(237, 1, 238, 0.07) !important;
    border-color: rgba(237, 1, 238, 0.18) !important;
}

.elementor-pro-content .section-title {
    max-width: 660px !important;
}

.elementor-pro .text-gradient,
.elementor-pro-content .text-gradient {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 46%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.elementor-pro-copy {
    display: grid !important;
    gap: 1rem !important;
    max-width: 660px !important;
    margin-top: 1.15rem !important;
}

.elementor-pro-copy p {
    position: relative !important;
    margin: 0 !important;
    padding: 1.18rem 1.22rem 1.18rem 1.28rem !important;
    border-radius: 1.15rem !important;
    color: #475569 !important;
    line-height: 1.72 !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74)),
        radial-gradient(circle at 100% 0%, rgba(255, 184, 229, 0.22), transparent 34%) !important;
    border: 1px solid rgba(237, 1, 238, 0.13) !important;
    border-left: 4px solid #ed01ee !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045) !important;
    overflow: hidden !important;
}

.elementor-pro-copy p::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: 0.28 !important;
    background-image:
        linear-gradient(rgba(237, 1, 238, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(237, 1, 238, 0.10) 1px, transparent 1px) !important;
    background-size: 22px 22px !important;
    mask-image: radial-gradient(circle at 100% 0%, #000, transparent 56%) !important;
    -webkit-mask-image: radial-gradient(circle at 100% 0%, #000, transparent 56%) !important;
}

.elementor-pro-copy p:nth-child(2) {
    border-left-color: #0ea5e9 !important;
    border-color: rgba(14, 165, 233, 0.14) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74)),
        radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.14), transparent 34%) !important;
}

/* Showcase has no white parent box; cards sit directly on the section. */
.elementor-pro-showcase {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    position: relative !important;
}

.elementor-sites-rail {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    max-height: 560px !important;
    overflow-y: hidden !important;
    overflow-x: visible !important;
    padding: 0.15rem 0.25rem 2.6rem !important;
    scroll-behavior: smooth !important;
    overscroll-behavior: contain !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(237, 1, 238, 0.34) transparent !important;
}

.elementor-pro-showcase.has-more-sites:hover .elementor-sites-rail,
.elementor-pro-showcase.has-more-sites:focus-within .elementor-sites-rail {
    overflow-y: auto !important;
}

.elementor-pro-showcase.has-more-sites::after {
    content: 'Scroll for more examples' !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0.18rem !important;
    z-index: 6 !important;
    transform: translateX(-50%) !important;
    padding: 0.48rem 0.82rem !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.88) !important;
    color: #fff !important;
    font-size: 0.72rem !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18) !important;
    animation: dmElementorScrollHint 2.1s ease-in-out infinite !important;
    pointer-events: none !important;
}

.elementor-pro-showcase.has-more-sites:hover::after,
.elementor-pro-showcase.has-more-sites:focus-within::after {
    opacity: 0 !important;
}

@keyframes dmElementorScrollHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-7px); }
}

.elementor-sites-rail::-webkit-scrollbar { width: 8px !important; height: 8px !important; }
.elementor-sites-rail::-webkit-scrollbar-track { background: transparent !important; }
.elementor-sites-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ed01ee, #ff7be5) !important;
    border-radius: 999px !important;
}

.elementor-site-card {
    min-height: 252px !important;
    border-radius: 1.35rem !important;
    overflow: hidden !important;
    background: #081827 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12) !important;
    transform: translateZ(0) !important;
}

.elementor-site-card:hover,
.elementor-site-card:focus-visible {
    transform: translateY(-4px) translateZ(0) !important;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16) !important;
}

.elementor-site-thumb {
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center top !important;
}

.elementor-site-info,
.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1.7rem !important;
    transform: translateY(0) !important;
    padding: 0.86rem 0.9rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.60), rgba(15, 23, 42, 0.74)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24) !important;
}

.elementor-site-info strong {
    padding-right: 2.35rem !important;
}

.elementor-site-info p {
    display: block !important;
    opacity: 1 !important;
    max-height: 72px !important;
    overflow: hidden !important;
    margin-top: 0.45rem !important;
}

/* Badges: prevent inherited span styles from touching inner icon span. */
.elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 1.7rem auto 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.82rem !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.68rem !important;
    min-height: 52px !important;
    padding: 0.56rem 1.06rem 0.56rem 0.62rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055) !important;
    color: #0f172a !important;
    font-size: 0.86rem !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .material-symbols-rounded,
.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .elementor-icon-img-wrap {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    flex: 0 0 36px !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .elementor-icon-img-wrap img {
    width: 19px !important;
    height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    filter: invert(18%) sepia(98%) saturate(5750%) hue-rotate(292deg) brightness(96%) contrast(105%) !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge strong {
    margin: 0 !important;
    color: inherit !important;
    font: inherit !important;
    line-height: 1.12 !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge-pro {
    color: #fff !important;
    border-color: rgba(237, 1, 238, 0.22) !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    box-shadow: 0 14px 34px rgba(237, 1, 238, 0.16) !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge-pro > .elementor-icon-img-wrap {
    background: rgba(255, 255, 255, 0.94) !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge-sites > .material-symbols-rounded {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.09) !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge-upwork {
    color: #0f3b08 !important;
    border-color: rgba(20, 168, 0, 0.24) !important;
    background: linear-gradient(135deg, #ffffff, #ecffe9) !important;
    box-shadow: 0 14px 34px rgba(20, 168, 0, 0.10) !important;
}

.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge-upwork > .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(20, 168, 0, 0.10) !important;
}

@media (max-width: 980px) {
    .elementor-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .elementor-pro-content .section-title,
    .elementor-pro-content .section-tag,
    .elementor-pro-content .section-subtitle,
    .elementor-pro-copy {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 680px) {
    .hero-floating-badge.elementor-expert-badge {
        display: none !important;
    }

    .elementor-pro-content .section-title {
        font-size: clamp(2.05rem, 10vw, 2.9rem) !important;
        line-height: 1.08 !important;
    }

    .elementor-sites-rail {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0.9rem !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0.1rem 1rem 1.05rem 0.1rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .elementor-sites-rail::-webkit-scrollbar {
        display: none !important;
    }

    .elementor-site-card {
        min-width: 82vw !important;
        max-width: 82vw !important;
        min-height: 238px !important;
        scroll-snap-align: start !important;
    }

    .elementor-site-info,
    .elementor-site-card:hover .elementor-site-info,
    .elementor-site-card:focus-visible .elementor-site-info {
        bottom: 1.05rem !important;
        left: 0.88rem !important;
        right: 0.88rem !important;
    }

    .elementor-pro-showcase.has-more-sites::after {
        display: none !important;
    }

    .elementor-pro-badges.elementor-pro-badges-bottom {
        gap: 0.65rem !important;
        margin-top: 1rem !important;
    }

    .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
        width: 100% !important;
        max-width: 340px !important;
        min-height: 50px !important;
        font-size: 0.84rem !important;
    }
}


/* ============================================
   DM v1.4.3 - HARD OVERRIDES / CACHE-BUSTED FINAL
   Fixes pricing badge, Elementor icon sizing, hero badge placement,
   showcase clipping, and logo radius.
   ============================================ */

/* 1) Logo mark must not have rounded icon box when using a custom logo/icon. */
.logo-mark,
.header .logo-mark,
.footer-logo .logo-mark {
    border-radius: 0 !important;
}
.logo-mark.has-image,
.header .logo-mark.has-image,
.footer-logo .logo-mark.has-image {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}
.logo-mark-img,
.logo-mark.has-image img,
.header .logo-mark.has-image img,
.footer-logo .logo-mark.has-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

/* 2) Hero Elementor badge: keep it out of the code-window header. */
.hero-visual {
    overflow: visible !important;
}
.hero-floating-badge.elementor-expert-badge,
.hero-floating-badge.quaternary.elementor-expert-badge {
    top: auto !important;
    right: auto !important;
    left: 50% !important;
    bottom: -2.65rem !important;
    transform: translateX(-50%) !important;
    z-index: 6 !important;
    min-width: max-content !important;
    background: rgba(15, 16, 20, 0.96) !important;
    border: 1px solid rgba(237, 1, 238, 0.28) !important;
    box-shadow: 0 18px 44px rgba(237, 1, 238, 0.13), 0 10px 26px rgba(0,0,0,.32) !important;
}
.elementor-mini-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}
.hero-floating-badge.elementor-expert-badge strong {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
@media (max-width: 980px) {
    .hero-floating-badge.elementor-expert-badge,
    .hero-floating-badge.quaternary.elementor-expert-badge {
        display: none !important;
    }
}

/* 3) Pricing featured card: badge must be a centered pill sitting on the top border, not a full-width bar. */
.pricing-card.pricing-featured {
    position: relative !important;
    padding-top: 3.05rem !important;
    border: 2px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #38bdf8 0%, #22d3ee 45%, #10b981 100%) border-box !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08), 0 0 0 4px rgba(14,165,233,.045) !important;
    overflow: visible !important;
    transform: none !important;
}
.pricing-card.pricing-featured::before,
.pricing-card.pricing-featured::after {
    display: none !important;
    content: none !important;
}
.pricing-card.pricing-featured .pricing-badge,
.pricing-featured .pricing-badge {
    position: absolute !important;
    top: -17px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    width: fit-content !important;
    inline-size: fit-content !important;
    min-width: 132px !important;
    max-width: none !important;
    height: 34px !important;
    padding: 0 1.15rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 48%, #10b981 100%) !important;
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 26px rgba(14,165,233,.22), 0 0 0 5px #fff !important;
    z-index: 8 !important;
}
.pricing-card.pricing-featured:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12), 0 0 0 4px rgba(14,165,233,.07) !important;
}

/* 4) Elementor section: correct brand gradient, cleaner copy boxes, no huge SVG. */
.elementor-pro {
    overflow: hidden !important;
    background:
        radial-gradient(circle at 7% 10%, rgba(255,184,229,.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(237,1,238,.075), transparent 30%),
        radial-gradient(circle at 92% 88%, rgba(14,165,233,.055), transparent 32%),
        #f7f8fb !important;
}
.elementor-pro .text-gradient,
.elementor-pro-content .text-gradient {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 46%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.elementor-pro-copy p {
    position: relative !important;
    margin: 0 !important;
    padding: 1.15rem 1.2rem !important;
    border-radius: 1.15rem !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(237,1,238,.13) !important;
    border-left: 4px solid #ed01ee !important;
    color: #475569 !important;
    box-shadow: 0 14px 34px rgba(15,23,42,.045) !important;
    line-height: 1.72 !important;
    overflow: hidden !important;
}
.elementor-pro-copy p::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: .22 !important;
    background-image:
        linear-gradient(rgba(237,1,238,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(237,1,238,.10) 1px, transparent 1px) !important;
    background-size: 22px 22px !important;
    mask-image: radial-gradient(circle at 100% 0%, #000, transparent 58%) !important;
    -webkit-mask-image: radial-gradient(circle at 100% 0%, #000, transparent 58%) !important;
}
.elementor-pro-copy p:nth-child(2) {
    border-left-color: #0ea5e9 !important;
    border-color: rgba(14,165,233,.14) !important;
}

/* 5) Elementor showcase: four cards must not be clipped; if more than four, scroll only when hovering/focused. */
.elementor-pro-showcase {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    position: relative !important;
}
.elementor-sites-rail {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    max-height: none !important;
    overflow: visible !important;
    padding: .15rem .25rem .3rem !important;
    scroll-behavior: smooth !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(237,1,238,.34) transparent !important;
}
.elementor-pro-showcase.has-more-sites .elementor-sites-rail {
    max-height: 584px !important;
    overflow-y: hidden !important;
    padding-bottom: 2.25rem !important;
}
.elementor-pro-showcase.has-more-sites:hover .elementor-sites-rail,
.elementor-pro-showcase.has-more-sites:focus-within .elementor-sites-rail {
    overflow-y: auto !important;
}
.elementor-pro-showcase.has-more-sites::after {
    content: 'Scroll for more examples' !important;
    position: absolute !important;
    left: 50% !important;
    bottom: .25rem !important;
    transform: translateX(-50%) !important;
    z-index: 8 !important;
    padding: .48rem .82rem !important;
    border-radius: 999px !important;
    background: rgba(15,23,42,.88) !important;
    color: #fff !important;
    font-size: .72rem !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    box-shadow: 0 14px 34px rgba(15,23,42,.18) !important;
    pointer-events: none !important;
    animation: dmElementorScrollHintV143 2.1s ease-in-out infinite !important;
}
.elementor-pro-showcase.has-more-sites:hover::after,
.elementor-pro-showcase.has-more-sites:focus-within::after { opacity: 0 !important; }
@keyframes dmElementorScrollHintV143 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-7px); }
}
.elementor-site-card {
    min-height: 252px !important;
    border-radius: 1.35rem !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, #082034, #050b16) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 16px 34px rgba(15,23,42,.12) !important;
    transform: translateZ(0) !important;
}
.elementor-site-thumb { min-height: 100% !important; background-size: cover !important; background-position: center top !important; }
.elementor-site-info,
.elementor-site-card:hover .elementor-site-info,
.elementor-site-card:focus-visible .elementor-site-info {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1.45rem !important;
    transform: none !important;
    padding: .86rem .9rem !important;
    border-radius: 1rem !important;
    background: linear-gradient(180deg, rgba(15,23,42,.62), rgba(15,23,42,.78)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.24) !important;
}
.elementor-site-info p { display:block !important; opacity:1 !important; max-height:72px !important; overflow:hidden !important; margin-top:.45rem !important; }

/* 6) Elementor proof badges: one clean layer, icon left/text right, no giant SVG. */
.elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 1.7rem auto 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .82rem !important;
}
.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: .68rem !important;
    min-height: 52px !important;
    padding: .56rem 1.06rem .56rem .62rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(148,163,184,.24) !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 12px 30px rgba(15,23,42,.055) !important;
    color: #0f172a !important;
    font-size: .86rem !important;
    font-weight: 850 !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
}
.elementor-brand-icon,
.elementor-pro-badges .elementor-icon-img-wrap,
.elementor-pro-badges .material-symbols-rounded {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    flex: 0 0 36px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-shadow: none !important;
}
.elementor-brand-icon {
    background: rgba(255,255,255,.96) !important;
    position: relative !important;
}
.elementor-brand-icon::before {
    content: '' !important;
    width: 19px !important;
    height: 19px !important;
    display: block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}
.elementor-pro-badges .elementor-icon-img-wrap img {
    width: 19px !important;
    height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}
.elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge strong {
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    font: inherit !important;
    line-height: 1.12 !important;
}
.elementor-pro-badges .elementor-badge-pro {
    color: #fff !important;
    border-color: rgba(237,1,238,.22) !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    box-shadow: 0 14px 34px rgba(237,1,238,.16) !important;
}
.elementor-pro-badges .elementor-badge-sites .material-symbols-rounded {
    color: #0284c7 !important;
    background: rgba(14,165,233,.09) !important;
    font-size: 19px !important;
}
.elementor-pro-badges .elementor-badge-upwork {
    color: #0f3b08 !important;
    border-color: rgba(20,168,0,.24) !important;
    background: linear-gradient(135deg, #ffffff, #ecffe9) !important;
    box-shadow: 0 14px 34px rgba(20,168,0,.10) !important;
}
.elementor-pro-badges .elementor-badge-upwork .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(20,168,0,.10) !important;
    font-size: 19px !important;
}

/* 7) Mobile showcase: horizontal swipe. */
@media (max-width: 680px) {
    .elementor-sites-rail,
    .elementor-pro-showcase.has-more-sites .elementor-sites-rail {
        display: flex !important;
        grid-template-columns: none !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: .85rem !important;
        padding: .1rem 0 1.1rem !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .elementor-sites-rail::-webkit-scrollbar { display:none !important; }
    .elementor-site-card {
        flex: 0 0 82% !important;
        min-height: 230px !important;
        scroll-snap-align: start !important;
    }
    .elementor-pro-showcase.has-more-sites::after { display:none !important; }
    .elementor-pro-badges.elementor-pro-badges-bottom {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        padding-bottom: .6rem !important;
        scrollbar-width: none !important;
    }
    .elementor-pro-badges.elementor-pro-badges-bottom::-webkit-scrollbar { display:none !important; }
}


/* ============================================
   DM v1.4.4 - FINAL LOADED OVERRIDES
   If this block is not present in DevTools, the server is not serving v1.4.4.
   ============================================ */
html body.dm-theme-version-1-4-4 .pricing-card.pricing-featured .pricing-badge,
html body .pricing-card.pricing-featured .pricing-badge {
    position: absolute !important;
    top: -17px !important;
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    min-width: 132px !important;
    max-width: max-content !important;
    height: 34px !important;
    padding: 0 1.15rem !important;
    transform: translateX(-50%) !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(90deg,#0ea5e9 0%,#06b6d4 48%,#10b981 100%) !important;
    box-shadow: 0 12px 26px rgba(14,165,233,.22), 0 0 0 5px #fff !important;
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    z-index: 20 !important;
}
html body.dm-theme-version-1-4-4 .pricing-card.pricing-featured,
html body .pricing-card.pricing-featured {
    position: relative !important;
    overflow: visible !important;
    padding-top: 3.05rem !important;
    border: 2px solid transparent !important;
    background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg,#38bdf8 0%,#22d3ee 45%,#10b981 100%) border-box !important;
    box-shadow: 0 22px 58px rgba(15,23,42,.08), 0 0 0 4px rgba(14,165,233,.045) !important;
}
html body .pricing-card.pricing-featured::before,
html body .pricing-card.pricing-featured::after { display:none !important; content:none !important; }

html body .hero-floating-badge.elementor-expert-badge,
html body .hero-floating-badge.quaternary.elementor-expert-badge {
    top: auto !important;
    right: auto !important;
    left: 50% !important;
    bottom: -2.8rem !important;
    transform: translateX(-50%) !important;
    z-index: 8 !important;
    max-width: max-content !important;
}
html body .elementor-mini-icon,
html body .elementor-brand-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    display: inline-block !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: linear-gradient(135deg,#ffb8e5 0%,#ed01ee 48%,#ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center/contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center/contain no-repeat !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .elementor-brand-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    border-radius: 999px !important;
    background: #fff !important;
    -webkit-mask: none !important;
    mask: none !important;
    display: inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .elementor-brand-icon::before {
    content:'' !important;
    width:19px !important;
    height:19px !important;
    display:block !important;
    background: linear-gradient(135deg,#ffb8e5 0%,#ed01ee 48%,#ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center/contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center/contain no-repeat !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .82rem !important;
    margin: 1.7rem auto 0 !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
    display: inline-flex !important;
    align-items:center !important;
    gap:.68rem !important;
    min-height:52px !important;
    padding:.56rem 1.06rem .56rem .62rem !important;
    border-radius:999px !important;
    background:#fff !important;
    border:1px solid rgba(148,163,184,.24) !important;
    box-shadow:0 12px 30px rgba(15,23,42,.055) !important;
    color:#0f172a !important;
    font-size:.86rem !important;
    font-weight:850 !important;
    white-space:nowrap !important;
}
html body .elementor-pro-badges .elementor-badge-pro { color:#fff !important; background:linear-gradient(135deg,#ffb8e5 0%,#ed01ee 48%,#ff7be5 100%) !important; }
html body .elementor-pro-badges .elementor-badge-upwork { color:#0f3b08 !important; background:linear-gradient(135deg,#fff,#ecffe9) !important; border-color:rgba(20,168,0,.24) !important; }

html body .elementor-sites-rail { max-height:none !important; overflow:visible !important; }
html body .elementor-pro-showcase.has-more-sites .elementor-sites-rail { max-height:584px !important; overflow-y:hidden !important; padding-bottom:2.25rem !important; }
html body .elementor-pro-showcase.has-more-sites:hover .elementor-sites-rail,
html body .elementor-pro-showcase.has-more-sites:focus-within .elementor-sites-rail { overflow-y:auto !important; }

@media (max-width: 980px) {
    html body .hero-floating-badge.elementor-expert-badge,
    html body .hero-floating-badge.quaternary.elementor-expert-badge { display:none !important; }
}

/* ============================================
   DM v1.4.5 - Elementor / Hero Stats / Footer polish
   Final override block. If missing in DevTools, cache/theme folder is stale.
   ============================================ */

/* 1) Hero stat cards: keep glass, remove inner colored gradient wash */
html body .hero-stats .stat {
    background: rgba(255, 255, 255, 0.075) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.035) !important;
    backdrop-filter: blur(18px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
}
html body .hero-stats .stat::before {
    display: none !important;
    content: none !important;
}
html body .hero-stats .stat:hover {
    background: rgba(255, 255, 255, 0.095) !important;
    border-color: rgba(56, 189, 248, 0.28) !important;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

/* 2) Elementor section: smoother background, better mobile spacing */
html body .elementor-pro {
    background:
        radial-gradient(circle at 8% 8%, rgba(237, 1, 238, 0.055), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(255, 123, 229, 0.05), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%) !important;
    overflow: hidden !important;
}
html body .elementor-pro .text-gradient,
html body .elementor-pro-content .text-gradient {
    background: linear-gradient(120deg, #ffb8e5 0%, #ed01ee 44%, #ff7be5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
html body .elementor-pro-content .section-tag {
    color: #b600c7 !important;
    background: rgba(237, 1, 238, 0.075) !important;
    border-color: rgba(237, 1, 238, 0.18) !important;
}

/* 3) Elementor copy: first paragraph as a real polished blockquote, second as clean text */
html body .elementor-pro-copy {
    gap: 1rem !important;
    max-width: 660px !important;
}
html body .elementor-pro-copy p {
    font-size: 1rem !important;
    line-height: 1.72 !important;
}
html body .elementor-pro-copy p:first-child {
    position: relative !important;
    padding: 1.35rem 1.35rem 1.35rem 3.1rem !important;
    border-radius: 1.25rem !important;
    border: 1px solid rgba(237, 1, 238, 0.14) !important;
    border-left: 4px solid #ed01ee !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 100% 0%, rgba(255, 184, 229, 0.20), transparent 34%) !important;
    color: #4b5563 !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055) !important;
    overflow: hidden !important;
}
html body .elementor-pro-copy p:first-child::before {
    content: '“' !important;
    position: absolute !important;
    left: 1.05rem !important;
    top: 0.62rem !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    background: none !important;
    opacity: 1 !important;
    color: #ed01ee !important;
    font-family: Georgia, serif !important;
    font-size: 3rem !important;
    line-height: 1 !important;
    mask: none !important;
    -webkit-mask: none !important;
}
html body .elementor-pro-copy p:first-child::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: .18 !important;
    background-image:
        linear-gradient(rgba(237,1,238,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(237,1,238,.12) 1px, transparent 1px) !important;
    background-size: 24px 24px !important;
    mask-image: radial-gradient(circle at 100% 0%, #000, transparent 58%) !important;
    -webkit-mask-image: radial-gradient(circle at 100% 0%, #000, transparent 58%) !important;
}
html body .elementor-pro-copy p:nth-child(2) {
    padding: 0.15rem 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #4b5563 !important;
}
html body .elementor-pro-copy p:nth-child(2)::before,
html body .elementor-pro-copy p:nth-child(2)::after {
    display: none !important;
    content: none !important;
}

/* 4) Elementor showcase cards: Elementor color fallback before thumbnails are added */
html body .elementor-site-card {
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 184, 229, 0.30), transparent 32%),
        radial-gradient(circle at 94% 88%, rgba(255, 123, 229, 0.20), transparent 34%),
        linear-gradient(145deg, #2a0830 0%, #15091d 55%, #070915 100%) !important;
    border-color: rgba(237, 1, 238, 0.16) !important;
}
html body .elementor-site-thumb:not(.has-thumb) {
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 184, 229, 0.34), transparent 34%),
        radial-gradient(circle at 88% 92%, rgba(237, 1, 238, 0.18), transparent 36%),
        linear-gradient(145deg, #2a0830 0%, #15091d 55%, #060815 100%) !important;
}
html body .elementor-site-thumb:not(.has-thumb)::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: .20 !important;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) !important;
    background-size: 28px 28px !important;
    pointer-events: none !important;
}
html body .elementor-site-thumb .material-symbols-rounded {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}
html body .elementor-site-info,
html body .elementor-site-card:hover .elementor-site-info,
html body .elementor-site-card:focus-visible .elementor-site-info {
    bottom: 1.95rem !important;
    background: linear-gradient(180deg, rgba(16, 7, 25, 0.68), rgba(9, 9, 18, 0.82)) !important;
    border-color: rgba(255, 184, 229, 0.18) !important;
}

/* 5) Elementor badges: make the Elementor Pro badge a stronger CTA-like pill, bigger icon. */
html body .elementor-pro-badges.elementor-pro-badges-bottom {
    margin: 1.85rem auto 0 !important;
    gap: .78rem !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
    min-height: 56px !important;
    padding: .58rem 1.16rem .58rem .62rem !important;
    gap: .72rem !important;
    border-radius: 999px !important;
    font-size: .88rem !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06) !important;
}
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .elementor-brand-icon,
html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge > .material-symbols-rounded {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    flex-basis: 40px !important;
}
html body .elementor-pro-badges .elementor-badge-pro {
    color: #fff !important;
    border: 1px solid rgba(237, 1, 238, 0.32) !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    box-shadow: 0 18px 44px rgba(237, 1, 238, 0.22) !important;
    transform: translateY(-1px) !important;
}
html body .elementor-pro-badges .elementor-badge-pro .elementor-brand-icon {
    background: rgba(255,255,255,.96) !important;
}
html body .elementor-pro-badges .elementor-badge-pro .elementor-brand-icon::before {
    width: 23px !important;
    height: 23px !important;
}
html body .elementor-pro-badges .elementor-badge-sites {
    background: #fff !important;
    color: #0f172a !important;
}
html body .elementor-pro-badges .elementor-badge-upwork {
    color: #0f3b08 !important;
    border-color: rgba(20, 168, 0, 0.26) !important;
    background: linear-gradient(135deg, #fff, #eeffea) !important;
}

/* 6) Mobile Elementor section polish */
@media (max-width: 980px) {
    html body .elementor-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    html body .elementor-pro-content .section-title,
    html body .elementor-pro-content .section-tag,
    html body .elementor-pro-content .section-subtitle,
    html body .elementor-pro-copy {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
@media (max-width: 680px) {
    html body .elementor-pro {
        padding-top: 4.4rem !important;
        padding-bottom: 4.4rem !important;
    }
    html body .elementor-pro-content .section-title {
        font-size: clamp(2.15rem, 11vw, 3.05rem) !important;
        line-height: 1.05 !important;
    }
    html body .elementor-pro-subtitle {
        font-size: 1rem !important;
        line-height: 1.62 !important;
    }
    html body .elementor-pro-copy p:first-child {
        padding: 1.15rem 1rem 1.15rem 2.75rem !important;
    }
    html body .elementor-pro-copy p:first-child::before {
        left: .85rem !important;
        top: .55rem !important;
        font-size: 2.55rem !important;
    }
    html body .elementor-sites-rail,
    html body .elementor-pro-showcase.has-more-sites .elementor-sites-rail {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: .85rem !important;
        padding: .15rem 0 1.15rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }
    html body .elementor-sites-rail::-webkit-scrollbar { display:none !important; }
    html body .elementor-site-card {
        flex: 0 0 84% !important;
        min-height: 238px !important;
        scroll-snap-align: start !important;
    }
    html body .elementor-site-info,
    html body .elementor-site-card:hover .elementor-site-info,
    html body .elementor-site-card:focus-visible .elementor-site-info {
        left: .9rem !important;
        right: .9rem !important;
        bottom: 1.05rem !important;
    }
    html body .elementor-pro-badges.elementor-pro-badges-bottom {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: .15rem 0 .7rem !important;
        scrollbar-width: none !important;
    }
    html body .elementor-pro-badges.elementor-pro-badges-bottom::-webkit-scrollbar { display:none !important; }
    html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
        flex: 0 0 auto !important;
    }
}

/* 7) Header/footer logo mark: custom image should not get rounded corners/background. */
html body .logo-mark.has-image,
html body .footer .logo-mark.has-image {
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
html body .logo-mark.has-image img,
html body .footer .logo-mark.has-image img {
    border-radius: 0 !important;
}

/* 8) Footer medals + stars/gradient atmosphere */
html body .footer {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 14% 18%, rgba(14, 165, 233, 0.10), transparent 28%),
        radial-gradient(circle at 86% 30%, rgba(237, 1, 238, 0.08), transparent 28%),
        linear-gradient(180deg, #060708 0%, #080b11 55%, #050607 100%) !important;
}
html body .footer::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: .44 !important;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(56,189,248,.45) 1px, transparent 1.5px) !important;
    background-size: 86px 86px, 132px 132px !important;
    background-position: 0 0, 26px 44px !important;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent) !important;
}
html body .footer .container {
    position: relative !important;
    z-index: 1 !important;
}
html body .footer-proof-medals {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .55rem !important;
    margin-top: 1.25rem !important;
    max-width: 520px !important;
}
html body .footer-proof-medal {
    display: inline-flex !important;
    align-items: center !important;
    gap: .46rem !important;
    min-height: 34px !important;
    padding: .36rem .64rem .36rem .42rem !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.055) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    color: rgba(238,239,244,.86) !important;
    font-size: .72rem !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}
html body .footer-proof-medal .material-symbols-rounded,
html body .footer-elementor-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    background: rgba(14,165,233,.12) !important;
    color: #38bdf8 !important;
}
html body .footer-proof-upwork .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(20,168,0,.12) !important;
}
html body .footer-elementor-icon::before {
    content: '' !important;
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}
@media (max-width: 760px) {
    html body .footer-proof-medals {
        justify-content: flex-start !important;
        max-width: 100% !important;
    }
    html body .footer-proof-medal {
        font-size: .68rem !important;
    }
}

/* ============================================
   DM v1.4.6 - Elementor badges + mobile stability
   Cache marker: dm-elementor-146-final
   ============================================ */

/* Elementor proof badges: clean pill buttons, no double backgrounds. */
html body .elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 2.1rem auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .82rem !important;
}

html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .72rem !important;
    min-height: 54px !important;
    padding: .56rem 1.14rem .56rem .58rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(148, 163, 184, .24) !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .07) !important;
    font-size: .9rem !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    transform: none !important;
    overflow: hidden !important;
}

html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge strong {
    color: inherit !important;
    font-size: inherit !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

html body .elementor-pro-badges .elementor-badge > .material-symbols-rounded,
html body .elementor-pro-badges .elementor-badge > .elementor-brand-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    flex: 0 0 38px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

html body .elementor-pro-badges .elementor-brand-icon {
    background: rgba(255, 255, 255, .96) !important;
    -webkit-mask: none !important;
    mask: none !important;
}

html body .elementor-pro-badges .elementor-brand-icon::before {
    content: '' !important;
    width: 21px !important;
    height: 21px !important;
    display: block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 50%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}

html body .elementor-pro-badges .elementor-badge-pro {
    color: #fff !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #ff7be5 100%) !important;
    border-color: rgba(237, 1, 238, .34) !important;
    box-shadow: 0 18px 42px rgba(237, 1, 238, .22) !important;
}

html body .elementor-pro-badges .elementor-badge-sites {
    color: #0f172a !important;
    background: #fff !important;
    border-color: rgba(148, 163, 184, .24) !important;
}

html body .elementor-pro-badges .elementor-badge-sites > .material-symbols-rounded {
    color: #0ea5e9 !important;
    background: rgba(14, 165, 233, .10) !important;
    border: 1px solid rgba(14, 165, 233, .18) !important;
}

html body .elementor-pro-badges .elementor-badge-upwork {
    color: #ffffff !important;
    background: linear-gradient(135deg, #14a800 0%, #3ccf1e 100%) !important;
    border-color: rgba(20, 168, 0, .38) !important;
    box-shadow: 0 18px 42px rgba(20, 168, 0, .18) !important;
}

html body .elementor-pro-badges .elementor-badge-upwork > .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(255, 255, 255, .38) !important;
}

/* Elementor section responsive cleanup. */
html body .elementor-pro-grid {
    align-items: start !important;
}

html body .elementor-pro-showcase {
    min-width: 0 !important;
    overflow: visible !important;
}

html body .elementor-sites-rail {
    min-width: 0 !important;
}

html body .elementor-site-card {
    will-change: transform !important;
}

html body .elementor-site-info,
html body .elementor-site-card:hover .elementor-site-info,
html body .elementor-site-card:focus-visible .elementor-site-info {
    bottom: 1.55rem !important;
}

@media (min-width: 981px) {
    html body .elementor-pro-showcase.has-more-sites .elementor-sites-rail {
        max-height: 610px !important;
        overflow-y: hidden !important;
        padding-bottom: 2.4rem !important;
    }
    html body .elementor-pro-showcase.has-more-sites:hover .elementor-sites-rail,
    html body .elementor-pro-showcase.has-more-sites:focus-within .elementor-sites-rail {
        overflow-y: auto !important;
    }
}

@media (max-width: 980px) {
    html body .elementor-pro {
        padding: 4.6rem 0 !important;
        overflow: hidden !important;
    }

    html body .elementor-pro .container {
        overflow: visible !important;
    }

    html body .elementor-pro-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
    }

    html body .elementor-pro-content {
        min-width: 0 !important;
        width: 100% !important;
    }

    html body .elementor-pro-content .section-tag,
    html body .elementor-pro-content .section-title,
    html body .elementor-pro-content .section-subtitle,
    html body .elementor-pro-copy {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    html body .elementor-pro-content .section-title {
        max-width: 720px !important;
    }

    html body .elementor-pro-showcase {
        width: 100% !important;
        max-width: 100% !important;
        margin: .2rem 0 0 !important;
        overflow: visible !important;
    }

    html body .elementor-sites-rail,
    html body .elementor-pro-showcase.has-more-sites .elementor-sites-rail {
        display: flex !important;
        grid-template-columns: none !important;
        gap: .9rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        max-height: none !important;
        padding: .15rem 0 1.15rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    html body .elementor-sites-rail::-webkit-scrollbar {
        display: none !important;
    }

    html body .elementor-site-card {
        flex: 0 0 min(84vw, 360px) !important;
        width: min(84vw, 360px) !important;
        min-width: min(84vw, 360px) !important;
        min-height: 250px !important;
        scroll-snap-align: start !important;
    }

    html body .elementor-site-info,
    html body .elementor-site-card:hover .elementor-site-info,
    html body .elementor-site-card:focus-visible .elementor-site-info {
        opacity: 1 !important;
        transform: none !important;
        left: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
    }

    html body .elementor-site-info p {
        display: none !important;
    }

    html body .elementor-pro-badges.elementor-pro-badges-bottom {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        padding: .2rem 0 .8rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    html body .elementor-pro-badges.elementor-pro-badges-bottom::-webkit-scrollbar {
        display: none !important;
    }

    html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
    }
}

@media (max-width: 680px) {
    html body .elementor-pro {
        padding: 4rem 0 !important;
    }

    html body .elementor-pro-content .section-title {
        font-size: clamp(2rem, 10vw, 2.72rem) !important;
        line-height: 1.07 !important;
        letter-spacing: -0.055em !important;
    }

    html body .elementor-pro-subtitle {
        font-size: .98rem !important;
        line-height: 1.62 !important;
    }

    html body .elementor-pro-copy p:first-child {
        padding: 1.05rem 1rem 1.05rem 2.65rem !important;
    }

    html body .elementor-pro-copy p:first-child::before {
        left: .78rem !important;
        top: .52rem !important;
        font-size: 2.35rem !important;
    }

    html body .elementor-site-card {
        flex-basis: 86vw !important;
        width: 86vw !important;
        min-width: 86vw !important;
        min-height: 236px !important;
        border-radius: 1.2rem !important;
    }

    html body .elementor-site-info strong {
        font-size: .96rem !important;
        line-height: 1.15 !important;
    }

    html body .elementor-pro-badges.elementor-pro-badges-bottom > .elementor-badge {
        min-height: 48px !important;
        padding: .48rem .92rem .48rem .5rem !important;
        font-size: .8rem !important;
    }

    html body .elementor-pro-badges .elementor-badge > .material-symbols-rounded,
    html body .elementor-pro-badges .elementor-badge > .elementor-brand-icon {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        flex-basis: 34px !important;
    }

    html body .elementor-pro-badges .elementor-brand-icon::before {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Footer proof badges: same visual language, Upwork green and Elementor since 2016. */
html body .footer-proof-medals {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .58rem !important;
    margin-top: 1.25rem !important;
    max-width: 660px !important;
}

html body .footer-proof-medal {
    display: inline-flex !important;
    align-items: center !important;
    gap: .48rem !important;
    min-height: 36px !important;
    padding: .36rem .66rem .36rem .42rem !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    color: rgba(238, 239, 244, .88) !important;
    font-size: .72rem !important;
    font-weight: 780 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

html body .footer-proof-medal .material-symbols-rounded,
html body .footer-proof-medal .footer-elementor-icon {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
}

html body .footer-proof-upwork {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(20, 168, 0, .98), rgba(60, 207, 30, .92)) !important;
    border-color: rgba(20, 168, 0, .42) !important;
}

html body .footer-proof-upwork .material-symbols-rounded {
    color: #14a800 !important;
    background: rgba(255, 255, 255, .96) !important;
}

html body .footer-proof-elementor {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(255, 184, 229, .95), rgba(237, 1, 238, .95), rgba(255, 123, 229, .95)) !important;
    border-color: rgba(237, 1, 238, .36) !important;
}

html body .footer-proof-elementor .footer-elementor-icon {
    background: rgba(255, 255, 255, .96) !important;
}

html body .footer-proof-elementor .footer-elementor-icon::before {
    content: '' !important;
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 50%, #ff7be5 100%) !important;
    -webkit-mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
    mask: url('https://dmiladinovic.com/wp-content/uploads/2022/09/elementor.svg') center / contain no-repeat !important;
}

@media (max-width: 760px) {
    html body .footer-proof-medals {
        max-width: 100% !important;
        gap: .45rem !important;
    }
    html body .footer-proof-medal {
        font-size: .66rem !important;
        min-height: 34px !important;
    }
}

/* ============================================
   ABOUT SECTION PORTRAIT UPDATE - v1.4.7
   Left text + right professional image
   ============================================ */
html body .about-grid {
    align-items: center;
}

html body .about-content {
    max-width: 620px;
}

html body .about-visual {
    position: relative;
}

html body .about-portrait-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

html body .about-portrait-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 560px;
    border-radius: 2rem;
    padding: 1rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,248,251,.72)),
        radial-gradient(circle at 12% 10%, rgba(14,165,233,.18), transparent 36%),
        radial-gradient(circle at 90% 86%, rgba(16,185,129,.14), transparent 38%);
    border: 1px solid rgba(14,165,233,.16);
    box-shadow:
        0 30px 75px rgba(15,23,42,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

html body .about-portrait-card::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(255,255,255,.62);
    z-index: 2;
    pointer-events: none;
}

html body .about-portrait-glow {
    position: absolute;
    inset: auto auto -18% -12%;
    width: 270px;
    height: 270px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14,165,233,.22), transparent 66%);
    filter: blur(10px);
    z-index: -1;
}

html body .about-portrait-media {
    position: absolute;
    inset: 1rem;
    border-radius: 1.45rem;
    overflow: hidden;
    background: #e5e7eb;
}

html body .about-portrait-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.01);
}

html body .about-portrait-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,6,23,0) 42%, rgba(2,6,23,.58) 100%),
        radial-gradient(circle at 18% 12%, rgba(56,189,248,.12), transparent 44%);
    pointer-events: none;
}

html body .about-portrait-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    max-width: calc(100% - 4rem);
    padding: .55rem .85rem .55rem .55rem;
    border-radius: 999px;
    color: #0f172a;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 14px 34px rgba(15,23,42,.13);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}

html body .about-portrait-badge .material-symbols-rounded {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    color: #fff;
    font-size: 17px;
}

html body .about-portrait-badge strong {
    font-size: .82rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

html body .about-portrait-caption {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    z-index: 4;
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(7,10,18,.70);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.90);
    font-size: .9rem;
    line-height: 1.5;
    font-weight: 600;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

html body .about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

html body .about-proof-item {
    min-height: 86px;
    padding: 1rem .75rem;
    border-radius: 1.05rem;
    text-align: center;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(14,165,233,.12);
    box-shadow: 0 16px 42px rgba(15,23,42,.06);
}

html body .about-proof-item strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.045em;
    color: #0f172a;
}

html body .about-proof-item span {
    display: block;
    margin-top: .32rem;
    font-size: .7rem;
    line-height: 1.25;
    font-weight: 700;
    color: #64748b;
}

html body .about-mini-quote {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: .8rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(16,185,129,.06));
    border: 1px solid rgba(14,165,233,.12);
    color: #334155;
}

html body .about-mini-quote .material-symbols-rounded {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,.11);
    color: #0ea5e9;
}

html body .about-mini-quote p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.55;
    font-style: italic;
}

@media (max-width: 1100px) {
    html body .about-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }
    html body .about-content,
    html body .about-portrait-wrap {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 680px) {
    html body .about-grid {
        gap: 2rem;
    }
    html body .about-portrait-card {
        min-height: 430px;
        border-radius: 1.35rem;
        padding: .7rem;
    }
    html body .about-portrait-card::before,
    html body .about-portrait-media {
        inset: .7rem;
        border-radius: 1rem;
    }
    html body .about-portrait-badge {
        top: 1.25rem;
        left: 1.25rem;
        max-width: calc(100% - 2.5rem);
        padding: .45rem .7rem .45rem .45rem;
    }
    html body .about-portrait-caption {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
        padding: .8rem .9rem;
        font-size: .8rem;
    }
    html body .about-proof-strip {
        gap: .55rem;
    }
    html body .about-proof-item {
        min-height: 76px;
        padding: .85rem .45rem;
        border-radius: .9rem;
    }
    html body .about-proof-item strong {
        font-size: 1.28rem;
    }
    html body .about-proof-item span {
        font-size: .58rem;
    }
    html body .about-mini-quote {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: .95rem;
    }
}


/* ============================================
   ABOUT IMAGE PROOF STRIP FINAL TWEAK - v1.4.8
   15+ / 400+ / 1 Elementor Only + left quote alignment
   ============================================ */
html body .about-proof-strip {
    width: 100% !important;
}

html body .about-proof-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .about-proof-item strong {
    font-size: clamp(1.5rem, 2.4vw, 1.8rem) !important;
}

html body .about-proof-item span {
    max-width: 120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

html body .about-mini-quote {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: flex-start !important;
    text-align: left !important;
    justify-items: stretch !important;
    grid-template-columns: 38px 1fr !important;
}

html body .about-mini-quote p {
    text-align: left !important;
}

@media (max-width: 680px) {
    html body .about-proof-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: .55rem !important;
    }
    html body .about-proof-item {
        min-height: 82px !important;
        padding: .82rem .42rem !important;
    }
    html body .about-proof-item strong {
        font-size: 1.45rem !important;
    }
    html body .about-proof-item span {
        font-size: .56rem !important;
        line-height: 1.18 !important;
        max-width: 92px !important;
    }
    html body .about-mini-quote {
        grid-template-columns: 34px 1fr !important;
        gap: .72rem !important;
        text-align: left !important;
        justify-items: stretch !important;
        padding: .95rem 1rem !important;
    }
    html body .about-mini-quote .material-symbols-rounded {
        width: 34px !important;
        height: 34px !important;
        font-size: 17px !important;
    }
    html body .about-mini-quote p {
        text-align: left !important;
        font-size: .82rem !important;
        line-height: 1.52 !important;
    }
}

/* ============================================
   DM v1.4.9 FINAL POLISH + BLOG SECTION
   Cache marker: dm-theme-149-blog-elementor-mobile-footer
   ============================================ */

/* Hero stats: remove heavy internal gradient wash, keep clean glass cards. */
html body .hero-stats .stat {
    background: rgba(255, 255, 255, 0.055) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,.11) !important;
}
html body .hero-stats .stat::before {
    opacity: 0 !important;
    display: none !important;
}
html body .hero-stats .stat:hover {
    background: rgba(255, 255, 255, 0.075) !important;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.30), 0 0 26px rgba(14,165,233,.08), inset 0 1px 0 rgba(255,255,255,.13) !important;
}

/* Elementor section: lighter, responsive, no scroll trap on mobile. */
html body .elementor-pro {
    overflow: visible !important;
}
html body .elementor-pro-grid {
    align-items: start !important;
}
html body .elementor-pro-showcase {
    overflow: visible !important;
    box-shadow: none !important;
}
html body .elementor-sites-rail {
    overscroll-behavior-x: contain !important;
    overscroll-behavior-y: auto !important;
    touch-action: pan-x pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}
html body .elementor-site-card {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10) !important;
}
html body .elementor-site-card:hover,
html body .elementor-site-card:focus-visible {
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14) !important;
}
html body .elementor-site-thumb:not(.has-thumb) {
    background: linear-gradient(135deg, rgba(255,184,229,.98), rgba(237,1,238,.76), rgba(255,123,229,.92)) !important;
}
html body .elementor-pro-copy p:first-child {
    position: relative !important;
    padding-left: 1.25rem !important;
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,240,250,.86)) !important;
    border-color: rgba(237,1,238,.14) !important;
}
html body .elementor-pro-copy p:first-child::before {
    content: '' !important;
    position: absolute !important;
    top: 1rem !important;
    bottom: 1rem !important;
    left: 0 !important;
    width: 4px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #ffb8e5, #ed01ee, #ff7be5) !important;
}
html body .elementor-pro-copy p:nth-child(2) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: .2rem 0 0 !important;
    color: #4b5563 !important;
}
html body .elementor-scroll-hint {
    display: inline-flex !important;
    align-items: center !important;
    gap: .4rem !important;
    margin-top: .75rem !important;
    color: #64748b !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    opacity: .88 !important;
}
html body .elementor-scroll-hint .material-symbols-rounded {
    font-size: 18px !important;
    color: #0ea5e9 !important;
    animation: dmElementorHint 1.65s ease-in-out infinite !important;
}
@keyframes dmElementorHint {
    0%,100% { transform: translateY(0); opacity: .68; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* Elementor and footer proof badges: same clean pill language. */
html body .elementor-pro-badges.elementor-pro-badges-bottom,
html body .footer-proof-medals {
    justify-content: center !important;
    align-items: center !important;
    gap: .72rem !important;
}
html body .elementor-pro-badges .elementor-badge,
html body .footer-proof-medal {
    display: inline-flex !important;
    align-items: center !important;
    gap: .65rem !important;
    min-height: 46px !important;
    padding: .48rem .92rem .48rem .5rem !important;
    border-radius: 999px !important;
    font-size: .82rem !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.07) !important;
}
html body .elementor-pro-badges .elementor-badge-pro,
html body .footer-proof-elementor {
    color: #fff !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 50%, #ff7be5 100%) !important;
    border-color: rgba(237, 1, 238, .32) !important;
}
html body .elementor-pro-badges .elementor-badge-upwork,
html body .footer-proof-upwork {
    color: #fff !important;
    background: linear-gradient(135deg, #14a800 0%, #36c51f 100%) !important;
    border-color: rgba(20,168,0,.36) !important;
}
html body .elementor-pro-badges .elementor-badge > .material-symbols-rounded,
html body .footer-proof-medal .material-symbols-rounded,
html body .elementor-pro-badges .elementor-brand-icon,
html body .footer-proof-medal .footer-elementor-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.96) !important;
    color: #0f172a !important;
    box-shadow: none !important;
}
html body .elementor-pro-badges .elementor-badge-upwork > .material-symbols-rounded,
html body .footer-proof-upwork .material-symbols-rounded {
    color: #14a800 !important;
}
html body .elementor-pro-badges .elementor-brand-icon::before,
html body .footer-elementor-icon::before {
    width: 18px !important;
    height: 18px !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 50%, #ff7be5 100%) !important;
}

/* Latest Blog Posts section */
html body .blog-preview {
    padding: var(--section-spacing) 0 !important;
    background: var(--bg-light) !important;
    overflow: hidden !important;
}
html body .blog-preview-head {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    margin-bottom: 2.2rem !important;
}
html body .blog-preview-head .section-title,
html body .blog-preview-head .section-subtitle {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
html body .blog-preview-head .section-subtitle {
    max-width: 650px !important;
}
html body .blog-archive-btn {
    flex: 0 0 auto !important;
    border-color: rgba(14,165,233,.22) !important;
    background: rgba(255,255,255,.72) !important;
}
html body .blog-posts-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}
html body .blog-preview-card {
    min-width: 0 !important;
}
html body .blog-card-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 390px !important;
    overflow: hidden !important;
    border-radius: 1.35rem !important;
    background: rgba(255,255,255,.92) !important;
    border: 1px solid rgba(203,213,225,.82) !important;
    box-shadow: 0 18px 44px rgba(15,23,42,.06) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}
html body .blog-card-link:hover,
html body .blog-card-link:focus-visible {
    transform: translateY(-4px) !important;
    border-color: rgba(14,165,233,.30) !important;
    box-shadow: 0 24px 58px rgba(15,23,42,.10) !important;
}
html body .blog-card-thumb {
    height: 165px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(16,185,129,.08)) !important;
    overflow: hidden !important;
}
html body .blog-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 220ms ease !important;
}
html body .blog-card-link:hover .blog-card-thumb img { transform: scale(1.045) !important; }
html body .blog-card-thumb .material-symbols-rounded {
    font-size: 3rem !important;
    color: #0ea5e9 !important;
}
html body .blog-card-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 1.15rem !important;
}
html body .blog-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .45rem !important;
    margin-bottom: .7rem !important;
}
html body .blog-card-meta span {
    display: inline-flex !important;
    padding: .24rem .52rem !important;
    border-radius: 999px !important;
    background: rgba(14,165,233,.08) !important;
    color: #0284c7 !important;
    font-size: .68rem !important;
    font-weight: 800 !important;
}
html body .blog-card-body h3 {
    color: #0f172a !important;
    font-size: 1rem !important;
    line-height: 1.22 !important;
    font-weight: 850 !important;
    letter-spacing: -.02em !important;
    margin: 0 0 .55rem !important;
}
html body .blog-card-body p {
    color: #64748b !important;
    font-size: .84rem !important;
    line-height: 1.5 !important;
    margin: 0 0 1rem !important;
}
html body .blog-read-more {
    margin-top: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .35rem !important;
    color: #0ea5e9 !important;
    font-size: .82rem !important;
    font-weight: 850 !important;
}
html body .blog-read-more .material-symbols-rounded { font-size: 17px !important; }

@media (max-width: 1020px) {
    html body .blog-preview-head {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    html body .blog-posts-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    html body .elementor-pro-grid {
        display: block !important;
    }
    html body .elementor-pro-content .section-title,
    html body .elementor-pro-content .section-tag,
    html body .elementor-pro-content .section-subtitle,
    html body .elementor-pro-copy {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    html body .elementor-pro-showcase {
        margin-top: 1.45rem !important;
        width: 100% !important;
    }
    html body .elementor-sites-rail {
        display: flex !important;
        grid-template-columns: none !important;
        gap: .85rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        max-height: none !important;
        padding: .1rem 0 1rem !important;
        margin-inline: calc(var(--container-padding) * -1) !important;
        padding-inline: var(--container-padding) !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
        box-shadow: none !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
        touch-action: pan-x pan-y !important;
        -webkit-overflow-scrolling: touch !important;
    }
    html body .elementor-sites-rail::-webkit-scrollbar { display: none !important; }
    html body .elementor-site-card {
        flex: 0 0 min(82vw, 330px) !important;
        min-height: 218px !important;
        scroll-snap-align: start !important;
        box-shadow: 0 10px 22px rgba(15,23,42,.10) !important;
    }
    html body .elementor-scroll-hint {
        display: none !important;
    }
    html body .elementor-pro-badges.elementor-pro-badges-bottom {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: .1rem var(--container-padding) .7rem !important;
        margin-inline: calc(var(--container-padding) * -1) !important;
        scrollbar-width: none !important;
        touch-action: pan-x pan-y !important;
    }
    html body .elementor-pro-badges.elementor-pro-badges-bottom::-webkit-scrollbar { display: none !important; }
    html body .elementor-pro-badges .elementor-badge {
        flex: 0 0 auto !important;
        max-width: none !important;
        width: auto !important;
    }

    html body .blog-preview {
        padding: var(--section-spacing-mobile) 0 !important;
    }
    html body .blog-preview-head {
        gap: 1rem !important;
        margin-bottom: 1.35rem !important;
    }
    html body .blog-preview-head .section-title,
    html body .blog-preview-head .section-subtitle {
        text-align: left !important;
    }
    html body .blog-posts-rail {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        gap: .85rem !important;
        margin-inline: calc(var(--container-padding) * -1) !important;
        padding: .1rem var(--container-padding) .75rem !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x pan-y !important;
    }
    html body .blog-posts-rail::-webkit-scrollbar { display: none !important; }
    html body .blog-preview-card {
        flex: 0 0 min(82vw, 330px) !important;
        scroll-snap-align: start !important;
    }
    html body .blog-card-link {
        min-height: 360px !important;
    }
    html body .blog-archive-btn {
        width: 100% !important;
    }
}

/* ============================================
   DUSAN M 1.5.1 CLEAN OVERRIDES
   About proof left, compact footer medals, mobile Elementor polish
   ============================================ */

/* Logo custom mark: no background/radius when image or SVG is used */
.logo-mark.has-custom-mark,
.logo-mark:has(img),
.logo-mark:has(svg),
.logo-mark img,
.logo-mark svg {
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.logo-mark.has-custom-mark img,
.logo-mark.has-custom-mark svg,
.logo-mark img,
.logo-mark svg {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
}

/* About section: stats + AI quote belong to the left content column */
.about-grid-with-left-proof {
    align-items: center !important;
}
.about-left-proof {
    margin-top: 1.7rem !important;
    width: 100% !important;
}
.about-content .about-proof-strip {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: .9rem !important;
    margin: 0 0 1rem !important;
}
.about-content .about-proof-item {
    min-height: 86px !important;
    padding: 1rem .9rem !important;
    border-radius: 1rem !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(14,165,233,.14) !important;
    box-shadow: 0 14px 34px rgba(15,23,42,.055) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.about-content .about-proof-item strong {
    font-size: 1.8rem !important;
    line-height: .95 !important;
    font-weight: 900 !important;
    letter-spacing: -.055em !important;
    color: #0f172a !important;
}
.about-content .about-proof-item span {
    margin-top: .28rem !important;
    font-size: .73rem !important;
    line-height: 1.2 !important;
    font-weight: 750 !important;
    color: #64748b !important;
}
.about-content .about-mini-quote {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.15rem 1.2rem !important;
    border-radius: 1.15rem !important;
    background: linear-gradient(135deg, rgba(224,242,254,.76), rgba(204,251,241,.54)) !important;
    border: 1px solid rgba(56,189,248,.18) !important;
    box-shadow: 0 16px 42px rgba(14,165,233,.07) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: .85rem !important;
    text-align: left !important;
}
.about-content .about-mini-quote .material-symbols-rounded {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(14,165,233,.12) !important;
    color: #0ea5e9 !important;
    font-size: 18px !important;
}
.about-content .about-mini-quote p {
    margin: 0 !important;
    font-size: .96rem !important;
    line-height: 1.65 !important;
    color: #475569 !important;
    font-style: italic !important;
}

/* Portrait badge: less white, hidden on phones so it does not cover the image */
.about-portrait-badge {
    background: rgba(2, 6, 23, .54) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 14px 40px rgba(2,6,23,.22) !important;
    backdrop-filter: blur(14px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}
.about-portrait-badge .material-symbols-rounded {
    background: linear-gradient(135deg, #22d3ee, #10b981) !important;
    color: #fff !important;
}
.about-portrait-badge strong { color: #fff !important; }

/* Hero stats: keep glass, remove heavy inner green/blue gradient wash */
.hero-stats .stat::before {
    opacity: .28 !important;
    background: radial-gradient(circle at 16% 12%, rgba(255,255,255,.12), transparent 42%) !important;
}
.hero-stats .stat {
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)) !important;
}

/* Elementor section polish */
.elementor-pro {
    overflow: hidden !important;
}
.elementor-pro-grid {
    align-items: center !important;
}
.elementor-pro-copy p:first-child {
    position: relative !important;
    border-left: 4px solid #ed01ee !important;
    background:
        linear-gradient(135deg, rgba(255,184,229,.18), rgba(255,123,229,.08)),
        rgba(255,255,255,.74) !important;
}
.elementor-pro-copy p:first-child::before {
    content: '“' !important;
    position: absolute !important;
    right: 1rem !important;
    top: -.55rem !important;
    font-size: 4rem !important;
    line-height: 1 !important;
    color: rgba(237,1,238,.12) !important;
    font-family: Georgia, serif !important;
}
.elementor-pro-copy p:nth-child(2) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: .35rem 0 0 !important;
}
.elementor-pro-copy p:nth-child(2)::before { display: none !important; }
.elementor-site-card {
    box-shadow: 0 16px 38px rgba(15,23,42,.11) !important;
}
.elementor-site-card:hover {
    transform: translateY(-3px) !important;
}
.elementor-site-thumb:not(.has-thumb) {
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 52%, #ff7be5 100%) !important;
}
.elementor-site-info {
    bottom: 1.1rem !important;
    left: 1.1rem !important;
    right: 1.1rem !important;
    transform: translateY(-.15rem) !important;
}
.elementor-pro-showcase {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Elementor proof badges: clean inline CTA style */
.elementor-pro-badges.elementor-pro-badges-bottom {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .75rem !important;
    margin: 1.6rem auto 0 !important;
    max-width: 980px !important;
}
.elementor-pro-badges .elementor-badge {
    min-height: 46px !important;
    padding: .55rem .85rem .55rem .55rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .62rem !important;
    border-radius: 999px !important;
    font-size: .82rem !important;
    line-height: 1 !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid rgba(148,163,184,.24) !important;
    box-shadow: 0 14px 34px rgba(15,23,42,.06) !important;
}
.elementor-pro-badges .elementor-badge > .material-symbols-rounded,
.elementor-pro-badges .elementor-brand-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.elementor-pro-badges .elementor-badge-pro {
    border-color: rgba(237,1,238,.24) !important;
    background: linear-gradient(135deg, rgba(255,184,229,.18), rgba(255,255,255,.88)) !important;
}
.elementor-pro-badges .elementor-badge-pro .elementor-brand-icon {
    background: linear-gradient(135deg, #ffb8e5, #ed01ee, #ff7be5) !important;
}
.elementor-pro-badges .elementor-badge-upwork {
    border-color: rgba(20,168,0,.28) !important;
    background: linear-gradient(135deg, rgba(20,168,0,.12), rgba(255,255,255,.88)) !important;
}
.elementor-pro-badges .elementor-badge-upwork > .material-symbols-rounded {
    background: #14a800 !important;
    color: #fff !important;
}

/* Footer proof medals: compact professional icon row, tooltip on hover */
.footer-proof-medals,
.footer-proof-medals.footer-proof-medals-compact {
    margin-top: 1.1rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .55rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
    max-width: 360px !important;
}
.footer-proof-medal {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
}
.footer-proof-medal strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}
.footer-proof-medal::after {
    content: attr(data-label) !important;
    position: absolute !important;
    left: 50% !important;
    bottom: calc(100% + 10px) !important;
    transform: translateX(-50%) translateY(4px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
    padding: .45rem .65rem !important;
    border-radius: .65rem !important;
    background: rgba(2,6,23,.94) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.22) !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    transition: opacity 160ms ease, transform 160ms ease !important;
    z-index: 20 !important;
}
.footer-proof-medal:hover::after,
.footer-proof-medal:focus-visible::after {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}
.footer-proof-medal > .material-symbols-rounded,
.footer-elementor-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
}
.footer-proof-upwork {
    border-color: rgba(20,168,0,.36) !important;
    background: rgba(20,168,0,.12) !important;
}
.footer-proof-upwork > .material-symbols-rounded {
    background: #14a800 !important;
    color: #fff !important;
}
.footer-proof-elementor {
    border-color: rgba(237,1,238,.34) !important;
    background: rgba(237,1,238,.10) !important;
}
.footer-proof-elementor .footer-elementor-icon {
    background: linear-gradient(135deg, #ffb8e5, #ed01ee, #ff7be5) !important;
}
.footer-proof-medal:not(.footer-proof-upwork):not(.footer-proof-elementor) > .material-symbols-rounded {
    background: rgba(255,255,255,.12) !important;
    color: #e2e8f0 !important;
}

@media (max-width: 980px) {
    .about-grid-with-left-proof {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .about-visual {
        order: -1 !important;
    }
}

@media (max-width: 680px) {
    .about-portrait-badge { display: none !important; }
    .about-content .about-proof-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: .55rem !important;
    }
    .about-content .about-proof-item {
        min-height: 72px !important;
        padding: .75rem .4rem !important;
        border-radius: .85rem !important;
    }
    .about-content .about-proof-item strong {
        font-size: 1.35rem !important;
    }
    .about-content .about-proof-item span {
        font-size: .58rem !important;
    }
    .about-content .about-mini-quote {
        padding: .95rem !important;
        border-radius: 1rem !important;
    }
    .about-content .about-mini-quote .material-symbols-rounded {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }
    .about-content .about-mini-quote p {
        font-size: .84rem !important;
        line-height: 1.5 !important;
    }

    .elementor-pro {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .elementor-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 1.6rem !important;
    }
    .elementor-pro-content {
        padding-inline: 1rem !important;
    }
    .elementor-pro-content .section-title {
        font-size: clamp(2rem, 10vw, 2.65rem) !important;
        line-height: 1.04 !important;
    }
    .elementor-pro-copy p {
        padding: 1rem !important;
        border-radius: 1rem !important;
    }
    .elementor-pro-showcase {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        padding: 0 1rem !important;
        overflow: visible !important;
    }
    .elementor-sites-rail {
        display: flex !important;
        gap: .9rem !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        max-height: none !important;
        padding: .2rem 1rem 1.1rem !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x pan-y !important;
    }
    .elementor-site-card {
        flex: 0 0 82vw !important;
        min-height: 260px !important;
        scroll-snap-align: center !important;
        border-radius: 1.2rem !important;
    }
    .elementor-pro-showcase.has-more-sites::after,
    .elementor-scroll-hint {
        display: none !important;
    }
    .elementor-pro-badges.elementor-pro-badges-bottom {
        padding: 0 1rem !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .elementor-pro-badges.elementor-pro-badges-bottom::-webkit-scrollbar { display: none !important; }
    .elementor-pro-badges .elementor-badge {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
    .footer-proof-medals,
    .footer-proof-medals.footer-proof-medals-compact {
        justify-content: flex-start !important;
        max-width: 100% !important;
    }
}

/* ============================================
   v1.5.2 FOOTER PROOF ICONS - NO OUTER CIRCLES
   Only clean colored icons, larger, with hover tooltip
   ============================================ */
html body .footer-proof-medals,
html body .footer-proof-medals.footer-proof-medals-compact {
    margin-top: 1rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .72rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
    max-width: 100% !important;
}

html body .footer-proof-medal {
    position: relative !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    transition: transform 160ms ease, opacity 160ms ease !important;
}

html body .footer-proof-medal:hover,
html body .footer-proof-medal:focus-visible {
    transform: translateY(-2px) !important;
    opacity: .96 !important;
}

html body .footer-proof-medal strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

html body .footer-proof-medal > .material-symbols-rounded,
html body .footer-proof-medal .footer-elementor-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18) !important;
}

html body .footer-proof-upwork > .material-symbols-rounded {
    background: #14a800 !important;
    color: #fff !important;
}

html body .footer-proof-elementor .footer-elementor-icon {
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 55%, #ff7be5 100%) !important;
    box-shadow: 0 12px 28px rgba(237, 1, 238, .24) !important;
}

html body .footer-proof-medal:not(.footer-proof-upwork):not(.footer-proof-elementor) > .material-symbols-rounded {
    background: rgba(255, 255, 255, .12) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
}

html body .footer-proof-medal::after {
    content: attr(data-label) !important;
    position: absolute !important;
    left: 50% !important;
    bottom: calc(100% + 10px) !important;
    transform: translateX(-50%) translateY(4px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
    padding: .48rem .68rem !important;
    border-radius: .7rem !important;
    background: rgba(2, 6, 23, .95) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    transition: opacity 160ms ease, transform 160ms ease !important;
    z-index: 50 !important;
}

html body .footer-proof-medal:hover::after,
html body .footer-proof-medal:focus-visible::after {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

@media (max-width: 680px) {
    html body .footer-proof-medals,
    html body .footer-proof-medals.footer-proof-medals-compact {
        gap: .62rem !important;
        justify-content: flex-start !important;
    }

    html body .footer-proof-medal {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    html body .footer-proof-medal > .material-symbols-rounded,
    html body .footer-proof-medal .footer-elementor-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 17px !important;
    }
}

/* =========================================================
   v1.5.3 Blog Preview, Archives, Single Posts + Share
   ========================================================= */
html body .blog-preview {
    padding: var(--section-spacing) 0;
    overflow: hidden;
}
html body .blog-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
html body .blog-preview-head > div { max-width: 760px; }
html body .blog-preview-head .section-title,
html body .blog-preview-head .section-subtitle { text-align: left; margin-left: 0; margin-right: 0; }
html body .blog-archive-btn { flex-shrink: 0; }
html body .blog-posts-rail,
html body .blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
html body .blog-preview-card,
html body .blog-archive-card {
    min-width: 0;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(203, 213, 225, .82);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15,23,42,.055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
html body .blog-preview-card:hover,
html body .blog-archive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14,165,233,.32);
    box-shadow: 0 24px 65px rgba(15,23,42,.09), 0 0 30px rgba(14,165,233,.08);
}
html body .blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
html body .blog-card-thumb {
    height: 150px;
    background:
        radial-gradient(circle at 20% 15%, rgba(56,189,248,.18), transparent 40%),
        linear-gradient(135deg, #eef6ff, #f7fbff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
html body .blog-card-thumb.has-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
html body .blog-preview-card:hover .blog-card-thumb.has-thumb img,
html body .blog-archive-card:hover .blog-card-thumb.has-thumb img { transform: scale(1.04); }
html body .blog-card-thumb .material-symbols-rounded {
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,.1);
    color: #0ea5e9;
    font-size: 28px;
}
html body .blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    flex: 1;
}
html body .blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 750;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .045em;
}
html body .blog-card-meta span {
    padding: .22rem .55rem;
    border-radius: 99px;
    background: rgba(14,165,233,.07);
}
html body .blog-card-body h3 {
    font-size: 1.02rem;
    line-height: 1.25;
    letter-spacing: -.025em;
    color: #0f172a;
    margin: 0;
}
html body .blog-card-body p {
    font-size: .88rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}
html body .blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 800;
    color: #0ea5e9;
}
html body .blog-read-more .material-symbols-rounded { font-size: 17px; }
html body .blog-placeholder-card { opacity: .92; }
html body .blog-empty-card {
    max-width: 720px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(14,165,233,.18);
    background: rgba(255,255,255,.82);
    text-align: center;
    box-shadow: 0 18px 54px rgba(15,23,42,.06);
}
html body .blog-empty-card > .material-symbols-rounded {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,.1);
    color: #0ea5e9;
    margin-bottom: .75rem;
}
html body .blog-archive-page,
html body .single-post-page { padding: 9rem 0 6rem; min-height: 70vh; }
html body .blog-archive-header { margin-bottom: 2.5rem; }
html body .blog-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
html body .blog-pagination { margin-top: 2.25rem; display: flex; justify-content: center; }
html body .dm-pagination .nav-links {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
}
html body .dm-pagination a,
html body .dm-pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .85rem;
    border-radius: 999px;
    border: 1px solid rgba(203,213,225,.9);
    background: #fff;
    font-weight: 750;
    color: #0f172a;
}
html body .dm-pagination .current { background: #0ea5e9; border-color: #0ea5e9; color: #fff; }
html body .dm-breadcrumbs { margin: 0 0 1.5rem; font-size: .82rem; color: #64748b; }
html body .dm-breadcrumbs ol { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
html body .dm-breadcrumbs li { display: inline-flex; align-items: center; gap: .5rem; }
html body .dm-breadcrumbs li:not(:last-child)::after { content: '/'; opacity: .45; }
html body .dm-breadcrumbs a { color: #0ea5e9; font-weight: 700; }
html body .single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3rem;
    align-items: start;
}
html body .single-post-article {
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(203,213,225,.8);
    border-radius: 1.75rem;
    box-shadow: 0 24px 70px rgba(15,23,42,.065);
    padding: clamp(1.25rem, 3vw, 2.5rem);
}
html body .single-post-header { margin-bottom: 1.5rem; }
html body .single-post-header .section-title { text-align: left; margin-left: 0; margin-right: 0; max-width: 880px; }
html body .single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1rem;
    color: #64748b;
    font-size: .88rem;
}
html body .single-post-meta span { display: inline-flex; align-items: center; gap: .35rem; }
html body .single-post-meta .material-symbols-rounded { font-size: 18px; color: #0ea5e9; }
html body .single-post-featured {
    border-radius: 1.35rem;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid rgba(203,213,225,.8);
}
html body .single-post-featured img { width: 100%; height: auto; display: block; }
html body .single-post-content {
    font-size: 1.04rem;
    line-height: 1.8;
    color: #334155;
}
html body .single-post-content h2,
html body .single-post-content h3 { color: #0f172a; letter-spacing: -.025em; margin-top: 1.8em; }
html body .single-post-content p { margin-bottom: 1.15rem; }
html body .single-post-content a { color: #0ea5e9; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
html body .blog-sidebar-sticky { position: sticky; top: 110px; }
html body .blog-sidebar-card {
    padding: 1.35rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(14,165,233,.10), transparent 38%),
        #fff;
    border: 1px solid rgba(203,213,225,.9);
    box-shadow: 0 18px 54px rgba(15,23,42,.065);
}
html body .blog-sidebar-card h3 { margin: .75rem 0 .5rem; font-size: 1.2rem; color: #0f172a; }
html body .blog-sidebar-card p { color: #64748b; font-size: .9rem; line-height: 1.55; margin-bottom: 1rem; }
html body .blog-sidebar-services { display: grid; gap: .55rem; margin-bottom: 1.1rem; }
html body .blog-sidebar-service {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem;
    border-radius: 1rem;
    background: rgba(248,250,252,.9);
    border: 1px solid rgba(226,232,240,.92);
    color: #0f172a;
}
html body .blog-sidebar-service .material-symbols-rounded {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,.1);
    color: #0ea5e9;
    font-size: 18px;
    flex: 0 0 auto;
}
html body .blog-sidebar-service strong { font-size: .86rem; line-height: 1.25; }
html body .dm-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    margin: 1.25rem 0;
    padding: .9rem;
    border-radius: 1.15rem;
    background: rgba(248,250,252,.92);
    border: 1px solid rgba(226,232,240,.92);
}
html body .dm-share-label { font-weight: 850; color: #0f172a; margin-right: .25rem; }
html body .dm-share-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 36px;
    padding: 0 .8rem;
    border-radius: 999px;
    border: 1px solid rgba(203,213,225,.95);
    background: #fff;
    color: #0f172a;
    font-size: .8rem;
    font-weight: 800;
    cursor: pointer;
}
html body .dm-share-btn .material-symbols-rounded { font-size: 17px; color: #0ea5e9; }
html body .post-tags { display:flex; gap:.45rem; flex-wrap:wrap; align-items:center; margin-top:1.5rem; }
html body .post-tags a { padding:.35rem .7rem; border-radius:99px; background:rgba(14,165,233,.08); color:#0ea5e9; font-size:.82rem; font-weight:750; }
html body .dm-search-form {
    display: flex;
    gap: .75rem;
    max-width: 720px;
    margin: -1rem auto 2.5rem;
    padding: .65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(203,213,225,.9);
    box-shadow: 0 18px 54px rgba(15,23,42,.055);
}
html body .dm-search-form input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0 1rem;
    outline: 0;
    min-width: 0;
}
@media (max-width: 1100px) {
    html body .blog-posts-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    html body .blog-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    html body .single-post-layout { grid-template-columns: 1fr; }
    html body .blog-sidebar-sticky { position: relative; top: auto; }
}
@media (max-width: 760px) {
    html body .blog-preview-head { display: block; text-align: left; }
    html body .blog-archive-btn { margin-top: 1.2rem; }
    html body .blog-posts-rail {
        display: flex !important;
        overflow-x: auto !important;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: .9rem;
        padding: .25rem var(--container-padding) 1.1rem;
        margin-left: calc(var(--container-padding) * -1);
        margin-right: calc(var(--container-padding) * -1);
    }
    html body .blog-posts-rail::-webkit-scrollbar { display: none; }
    html body .blog-preview-card {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }
    html body .blog-archive-page,
    html body .single-post-page { padding-top: 7rem; }
    html body .blog-archive-grid { grid-template-columns: 1fr; }
    html body .single-post-article { border-radius: 1.25rem; padding: 1.1rem; }
    html body .single-post-meta { gap: .5rem; }
    html body .dm-share { gap: .45rem; }
    html body .dm-share-label { width: 100%; }
    html body .dm-share-btn { flex: 1 1 calc(50% - .45rem); justify-content:center; }
    html body .dm-search-form { border-radius: 1.25rem; flex-direction: column; padding: .9rem; }
    html body .dm-search-form input { min-height: 44px; }
}


/* ============================================
   BLOG PREVIEW FINAL - CENTERED WHITE/GRADIENT SECTION v1.5.4
   ============================================ */
html body .blog-preview#blog,
html body section.blog-preview {
    position: relative !important;
    padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(14, 165, 233, 0.13), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #ffffff 100%) !important;
    border-top: 1px solid rgba(203, 213, 225, 0.58) !important;
    border-bottom: 1px solid rgba(203, 213, 225, 0.50) !important;
    overflow: hidden !important;
}

html body .blog-preview#blog::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: 0.55 !important;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    mask-image: radial-gradient(circle at center, black, transparent 72%) !important;
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 72%) !important;
}

html body .blog-preview#blog .container {
    position: relative !important;
    z-index: 1 !important;
}

html body .blog-preview#blog .blog-preview-head {
    display: block !important;
    max-width: 820px !important;
    margin: 0 auto 2.8rem !important;
    text-align: center !important;
}

html body .blog-preview#blog .blog-preview-head > div,
html body .blog-preview#blog .blog-preview-head .section-tag,
html body .blog-preview#blog .blog-preview-head .section-title,
html body .blog-preview#blog .blog-preview-head .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

html body .blog-preview#blog .blog-preview-head .section-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.15rem !important;
}

html body .blog-preview#blog .blog-preview-head .section-title {
    max-width: 860px !important;
    margin-bottom: 0.85rem !important;
}

html body .blog-preview#blog .blog-preview-head .section-subtitle {
    max-width: 690px !important;
    color: #475569 !important;
}

html body .blog-preview#blog .blog-posts-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.1rem !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

html body .blog-preview#blog .blog-preview-card,
html body .blog-preview#blog .blog-placeholder-card {
    min-width: 0 !important;
}

html body .blog-preview#blog .blog-card-link {
    min-height: 390px !important;
    border-radius: 1.35rem !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(203, 213, 225, 0.74) !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.065) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

html body .blog-preview#blog .blog-card-link:hover,
html body .blog-preview#blog .blog-card-link:focus-visible {
    transform: translateY(-5px) !important;
    border-color: rgba(14, 165, 233, 0.34) !important;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11), 0 0 34px rgba(14, 165, 233, 0.08) !important;
}

html body .blog-preview#blog .blog-card-thumb {
    background:
        radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.18), transparent 42%),
        radial-gradient(circle at 90% 80%, rgba(52, 211, 153, 0.12), transparent 40%),
        linear-gradient(135deg, #eef8ff, #f8fcff) !important;
}

html body .blog-preview#blog .blog-preview-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 2.25rem !important;
    text-align: center !important;
}

html body .blog-preview#blog .blog-archive-btn {
    margin: 0 auto !important;
    min-height: 48px !important;
    padding: 0.85rem 1.6rem !important;
    border-color: rgba(14, 165, 233, 0.26) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06) !important;
}

html body .blog-preview#blog .blog-archive-btn:hover {
    border-color: rgba(14, 165, 233, 0.55) !important;
    background: #ffffff !important;
    color: #0ea5e9 !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 1100px) {
    html body .blog-preview#blog .blog-posts-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    html body .blog-preview#blog {
        padding: 4rem 0 !important;
    }

    html body .blog-preview#blog .blog-preview-head {
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        padding: 0 0.15rem !important;
    }

    html body .blog-preview#blog .blog-preview-head .section-title {
        font-size: clamp(2rem, 9vw, 2.55rem) !important;
        line-height: 1.08 !important;
    }

    html body .blog-preview#blog .blog-preview-head .section-subtitle {
        font-size: 0.98rem !important;
        line-height: 1.58 !important;
    }

    html body .blog-preview#blog .blog-posts-rail {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain !important;
        overscroll-behavior-y: auto !important;
        touch-action: pan-x pan-y !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.9rem !important;
        padding: 0.25rem var(--container-padding) 1.15rem !important;
        margin-left: calc(var(--container-padding) * -1) !important;
        margin-right: calc(var(--container-padding) * -1) !important;
        scrollbar-width: none !important;
    }

    html body .blog-preview#blog .blog-posts-rail::-webkit-scrollbar {
        display: none !important;
    }

    html body .blog-preview#blog .blog-preview-card,
    html body .blog-preview#blog .blog-placeholder-card {
        flex: 0 0 min(82vw, 360px) !important;
        scroll-snap-align: start !important;
    }

    html body .blog-preview#blog .blog-card-link {
        min-height: 370px !important;
    }

    html body .blog-preview#blog .blog-preview-actions {
        margin-top: 1.35rem !important;
    }

    html body .blog-preview#blog .blog-archive-btn {
        width: auto !important;
        min-width: 220px !important;
    }
}

/* ============================================
   SINGLE POST PRO LAYOUT v1.5.5
   Hero, sticky services sidebar, typography, related posts
   ============================================ */
html body.single-post .single-post-page.dm-single-pro,
html body .single-post-page.dm-single-pro {
    padding: 0 !important;
    background: #f7f9fc !important;
}

html body .single-post-hero {
    position: relative !important;
    min-height: clamp(360px, 42vh, 520px) !important;
    padding: 8.5rem 0 4.25rem !important;
    overflow: hidden !important;
    background: #050708 !important;
    color: #fff !important;
}

html body .single-post-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    background:
        radial-gradient(circle at 14% 20%, rgba(14, 165, 233, 0.22), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(16, 185, 129, 0.16), transparent 30%),
        radial-gradient(circle at 70% 90%, rgba(56, 189, 248, 0.10), transparent 36%),
        linear-gradient(180deg, #050708 0%, #080b0f 100%) !important;
}

html body .single-post-hero-bg::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0.34 !important;
    background-image:
        linear-gradient(rgba(56,189,248,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,.08) 1px, transparent 1px) !important;
    background-size: 64px 64px !important;
    mask-image: radial-gradient(circle at center, black, transparent 75%) !important;
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 75%) !important;
}

html body .single-post-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

html body .single-post-hero-inner {
    width: min(940px, 100%) !important;
}

html body .single-post-kicker.section-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #38bdf8 !important;
    border-color: rgba(56, 189, 248, 0.32) !important;
    background: rgba(14, 165, 233, 0.12) !important;
    margin-bottom: 1.15rem !important;
}

html body .single-post-title {
    margin: 0 !important;
    max-width: 950px !important;
    font-size: clamp(2.45rem, 5vw, 4.65rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.06em !important;
    font-weight: 900 !important;
    color: #f8fafc !important;
    text-wrap: balance !important;
}

html body .single-post-hero-meta {
    margin-top: 1.15rem !important;
    color: rgba(226, 232, 240, 0.78) !important;
}

html body .single-post-hero-meta span {
    color: rgba(226, 232, 240, 0.82) !important;
}

html body .single-post-hero-meta .material-symbols-rounded {
    color: #38bdf8 !important;
}

html body .single-post-hero .dm-breadcrumbs {
    margin: 1.15rem 0 0 !important;
    color: rgba(226, 232, 240, 0.62) !important;
}

html body .single-post-hero .dm-breadcrumbs a {
    color: #38bdf8 !important;
}

html body .single-post-hero .dm-breadcrumbs span {
    color: rgba(226, 232, 240, 0.70) !important;
}

html body .single-post-body {
    position: relative !important;
    padding: clamp(2.25rem, 5vw, 4.5rem) 0 6rem !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.08), transparent 32%),
        radial-gradient(circle at 92% 14%, rgba(16, 185, 129, 0.06), transparent 34%),
        #f7f9fc !important;
}

html body .single-post-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 315px !important;
    gap: 1.55rem !important;
    align-items: start !important;
}

html body .single-post-article {
    background: rgba(255, 255, 255, 0.93) !important;
    border: 1px solid rgba(203, 213, 225, 0.82) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.06) !important;
    padding: clamp(1.2rem, 3vw, 2.55rem) !important;
}

html body .single-post-featured {
    margin: 0 0 1.65rem !important;
    border-radius: 1.15rem !important;
    border: 1px solid rgba(203, 213, 225, 0.72) !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
}

html body .single-post-featured img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

html body .single-post-featured figcaption {
    padding: 0.85rem 1rem !important;
    border-top: 1px solid rgba(226, 232, 240, 0.88) !important;
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
    color: #64748b !important;
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    font-style: italic !important;
}

html body .single-post-content {
    max-width: 760px !important;
    margin: 0 auto !important;
    color: #243044 !important;
    font-size: clamp(1.02rem, 1.35vw, 1.11rem) !important;
    line-height: 1.88 !important;
    letter-spacing: -0.01em !important;
}

html body .single-post-content > *:first-child {
    margin-top: 0 !important;
}

html body .single-post-content p {
    margin: 0 0 1.25rem !important;
}

html body .single-post-content h2,
html body .single-post-content h3,
html body .single-post-content h4 {
    color: #0f172a !important;
    letter-spacing: -0.04em !important;
    line-height: 1.16 !important;
    margin: 2.1em 0 0.75em !important;
    text-wrap: balance !important;
}

html body .single-post-content h2 { font-size: clamp(1.75rem, 3vw, 2.45rem) !important; }
html body .single-post-content h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem) !important; }

html body .single-post-content ul,
html body .single-post-content ol {
    margin: 0 0 1.35rem 1.2rem !important;
    padding-left: 1rem !important;
}

html body .single-post-content li {
    margin-bottom: 0.55rem !important;
}

html body .single-post-content blockquote {
    position: relative !important;
    margin: 2rem 0 !important;
    padding: 1.35rem 1.45rem 1.35rem 1.65rem !important;
    border-left: 4px solid #0ea5e9 !important;
    border-radius: 1rem !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.12), transparent 38%),
        #f8fcff !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.055) !important;
}

html body .single-post-content img {
    border-radius: 1rem !important;
}

html body .single-post-content a {
    color: #0284c7 !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 4px !important;
}

html body .blog-sidebar-sticky {
    position: sticky !important;
    top: 96px !important;
}

html body .blog-sidebar-card {
    padding: 1.1rem !important;
    border-radius: 1.05rem !important;
    color: #e5e7eb !important;
    background:
        radial-gradient(circle at 85% 0%, rgba(14, 165, 233, 0.17), transparent 34%),
        radial-gradient(circle at 15% 100%, rgba(16, 185, 129, 0.11), transparent 38%),
        #080b10 !important;
    border: 1px solid rgba(56, 189, 248, 0.16) !important;
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.22) !important;
}

html body .blog-sidebar-card .section-tag {
    background: rgba(14, 165, 233, 0.12) !important;
    color: #38bdf8 !important;
    border-color: rgba(56, 189, 248, 0.20) !important;
    margin-bottom: 0.75rem !important;
}

html body .blog-sidebar-card h3 {
    color: #ffffff !important;
    font-size: 1.08rem !important;
    line-height: 1.2 !important;
    margin: 0.6rem 0 0.45rem !important;
    letter-spacing: -0.03em !important;
}

html body .blog-sidebar-card p {
    color: rgba(226, 232, 240, 0.70) !important;
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.95rem !important;
}

html body .blog-sidebar-services {
    display: grid !important;
    gap: 0.45rem !important;
    margin-bottom: 1rem !important;
}

html body .blog-sidebar-service {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.66rem 0.68rem !important;
    border-radius: 0.78rem !important;
    color: #e5e7eb !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    text-align: left !important;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease !important;
}

html body .blog-sidebar-service:hover,
html body .blog-sidebar-service:focus-visible {
    transform: translateY(-2px) !important;
    background: rgba(14, 165, 233, 0.11) !important;
    border-color: rgba(56, 189, 248, 0.30) !important;
}

html body .blog-sidebar-service .material-symbols-rounded {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    border-radius: 0.65rem !important;
    background: rgba(14, 165, 233, 0.14) !important;
    color: #38bdf8 !important;
    font-size: 17px !important;
}

html body .blog-sidebar-service strong {
    color: #f8fafc !important;
    font-size: 0.82rem !important;
    line-height: 1.22 !important;
}

html body .blog-sidebar-card .btn {
    min-height: 43px !important;
}

html body .dm-share {
    max-width: 760px !important;
    margin: 1.25rem auto 1.75rem !important;
    padding: 0.72rem !important;
    border-radius: 1rem !important;
    background: rgba(248, 250, 252, 0.92) !important;
    border: 1px solid rgba(226, 232, 240, 0.92) !important;
}

html body .single-post-footer .dm-share {
    margin-top: 1.5rem !important;
}

html body .single-related-posts {
    margin-top: clamp(3rem, 7vw, 5rem) !important;
    padding-top: clamp(2rem, 4vw, 3rem) !important;
    border-top: 1px solid rgba(203, 213, 225, 0.72) !important;
}

html body .single-related-head {
    max-width: 760px !important;
    margin: 0 auto 1.8rem !important;
    text-align: center !important;
}

html body .single-related-head h2 {
    margin: 0.65rem 0 0.55rem !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.05em !important;
    color: #0f172a !important;
}

html body .single-related-head p {
    margin: 0 auto !important;
    max-width: 620px !important;
    color: #64748b !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

html body .single-related-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

html body .single-related-grid .blog-archive-card .blog-card-link {
    min-height: 360px !important;
    border-radius: 1.25rem !important;
    background: rgba(255, 255, 255, 0.90) !important;
    border: 1px solid rgba(203, 213, 225, 0.78) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06) !important;
}

@media (max-width: 1100px) {
    html body .single-post-layout {
        grid-template-columns: 1fr !important;
        gap: 1.35rem !important;
    }

    html body .blog-sidebar-sticky {
        position: relative !important;
        top: auto !important;
    }

    html body .single-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    html body .single-post-hero {
        min-height: auto !important;
        padding: 7rem 0 3rem !important;
    }

    html body .single-post-title {
        font-size: clamp(2.05rem, 11vw, 3.05rem) !important;
        letter-spacing: -0.055em !important;
    }

    html body .single-post-hero-meta {
        gap: 0.5rem !important;
        font-size: 0.82rem !important;
    }

    html body .single-post-hero .dm-breadcrumbs {
        font-size: 0.75rem !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    html body .single-post-hero .dm-breadcrumbs::-webkit-scrollbar {
        display: none !important;
    }

    html body .single-post-body {
        padding: 1.6rem 0 4rem !important;
    }

    html body .single-post-article {
        border-radius: 1rem !important;
        padding: 1rem !important;
    }

    html body .single-post-featured {
        border-radius: 0.9rem !important;
        margin-bottom: 1.15rem !important;
    }

    html body .single-post-content {
        font-size: 1rem !important;
        line-height: 1.78 !important;
    }

    html body .blog-sidebar-card {
        border-radius: 1rem !important;
    }

    html body .dm-share {
        gap: 0.45rem !important;
        border-radius: 0.9rem !important;
    }

    html body .dm-share-label {
        width: 100% !important;
    }

    html body .dm-share-btn {
        flex: 1 1 calc(50% - 0.45rem) !important;
        justify-content: center !important;
    }

    html body .single-related-posts {
        margin-top: 3rem !important;
    }

    html body .single-related-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 0.9rem !important;
        padding: 0.25rem var(--container-padding) 1rem !important;
        margin-left: calc(var(--container-padding) * -1) !important;
        margin-right: calc(var(--container-padding) * -1) !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        touch-action: pan-x pan-y !important;
    }

    html body .single-related-grid::-webkit-scrollbar {
        display: none !important;
    }

    html body .single-related-grid .blog-archive-card {
        flex: 0 0 min(82vw, 360px) !important;
        scroll-snap-align: start !important;
    }
}

/* ============================================
   SINGLE POST READING EXPERIENCE v1.5.6
   Professional hero, article media containment,
   sticky services, lightbox, responsive embeds
   ============================================ */
html body.single-post .single-post-page.dm-single-pro,
html body .single-post-page.dm-single-pro {
    background: #f5f8fb !important;
}

html body .single-post-hero {
    min-height: clamp(320px, 36vh, 460px) !important;
    padding: 8rem 0 3.6rem !important;
    overflow: hidden !important;
}

html body .single-post-hero-bg {
    background:
        radial-gradient(circle at 16% 18%, rgba(14, 165, 233, 0.22), transparent 36%),
        radial-gradient(circle at 88% 8%, rgba(16, 185, 129, 0.18), transparent 30%),
        radial-gradient(circle at 72% 88%, rgba(56, 189, 248, 0.10), transparent 38%),
        linear-gradient(180deg, #040607 0%, #071017 100%) !important;
}

html body .single-post-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: 0.35 !important;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(56, 189, 248, 0.85) 0 1px, transparent 1.8px),
        radial-gradient(circle at 24% 70%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.8px),
        radial-gradient(circle at 44% 16%, rgba(56, 189, 248, 0.70) 0 1px, transparent 1.8px),
        radial-gradient(circle at 64% 40%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.8px),
        radial-gradient(circle at 84% 20%, rgba(56, 189, 248, 0.68) 0 1px, transparent 1.8px),
        radial-gradient(circle at 92% 78%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px) !important;
    animation: singlePostStarsDrift 18s linear infinite alternate !important;
}

html body .single-post-hero-stars {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

html body .single-post-hero-stars span {
    position: absolute !important;
    width: 3px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: rgba(56, 189, 248, 0.82) !important;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.55) !important;
    animation: singlePostStarPulse 4s ease-in-out infinite !important;
}
html body .single-post-hero-stars span:nth-child(1) { left: 8%; top: 22%; animation-delay: 0s !important; }
html body .single-post-hero-stars span:nth-child(2) { left: 18%; top: 74%; animation-delay: .6s !important; }
html body .single-post-hero-stars span:nth-child(3) { left: 35%; top: 13%; animation-delay: 1.2s !important; }
html body .single-post-hero-stars span:nth-child(4) { left: 51%; top: 65%; animation-delay: 1.8s !important; }
html body .single-post-hero-stars span:nth-child(5) { left: 70%; top: 25%; animation-delay: 2.4s !important; }
html body .single-post-hero-stars span:nth-child(6) { left: 86%; top: 75%; animation-delay: 3s !important; }
html body .single-post-hero-stars span:nth-child(7) { left: 92%; top: 18%; animation-delay: .35s !important; }
html body .single-post-hero-stars span:nth-child(8) { left: 43%; top: 84%; animation-delay: .95s !important; }
html body .single-post-hero-stars span:nth-child(9) { left: 62%; top: 10%; animation-delay: 1.55s !important; }
html body .single-post-hero-stars span:nth-child(10) { left: 5%; top: 52%; animation-delay: 2.15s !important; }
html body .single-post-hero-stars span:nth-child(11) { left: 77%; top: 56%; animation-delay: 2.75s !important; }
html body .single-post-hero-stars span:nth-child(12) { left: 29%; top: 42%; animation-delay: 3.35s !important; }

@keyframes singlePostStarPulse {
    0%, 100% { opacity: 0.28; transform: translateY(0) scale(0.75); }
    50% { opacity: 1; transform: translateY(-8px) scale(1.18); }
}
@keyframes singlePostStarsDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -14px, 0); }
}

html body .single-post-hero-inner {
    width: 100% !important;
    max-width: 1160px !important;
}

html body .single-post-title {
    max-width: 1120px !important;
    font-size: clamp(2.55rem, 5.2vw, 4.35rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.055em !important;
    font-weight: 780 !important;
    text-wrap: balance !important;
}

html body .single-post-body {
    padding: clamp(1.5rem, 3.5vw, 3rem) 0 5rem !important;
}

html body .single-post-layout {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 1.05rem !important;
    align-items: start !important;
}

html body .single-post-article {
    padding: 20px !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
}

html body .single-post-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    font-size: clamp(1.03rem, 1.15vw, 1.12rem) !important;
    line-height: 1.86 !important;
    color: #1f2b3d !important;
}

html body .single-post-content p {
    margin: 0 0 1.22rem !important;
}

html body .single-post-content h2,
html body .single-post-content h3,
html body .single-post-content h4 {
    color: #07111f !important;
    font-weight: 820 !important;
    letter-spacing: -0.045em !important;
    line-height: 1.13 !important;
    margin: 2.05em 0 0.72em !important;
    text-wrap: balance !important;
}

html body .single-post-content h2 {
    font-size: clamp(1.85rem, 3.1vw, 2.55rem) !important;
}

html body .single-post-content h3 {
    font-size: clamp(1.4rem, 2.25vw, 1.85rem) !important;
}

html body .single-post-content blockquote {
    margin: 2rem 0 !important;
    padding: 1.35rem 1.45rem !important;
    border-left: 4px solid #0ea5e9 !important;
    border-radius: .95rem !important;
    background: linear-gradient(135deg, rgba(14, 165, 233, .08), rgba(16, 185, 129, .045)), #f8fcff !important;
    color: #0f172a !important;
    font-size: 1.04rem !important;
    line-height: 1.7 !important;
}

/* Keep every image/caption inside article width, including alignwide/alignfull. */
html body .single-post-content figure,
html body .single-post-content .wp-block-image,
html body .single-post-content .wp-caption,
html body .single-post-content .alignwide,
html body .single-post-content .alignfull,
html body .single-post-content .size-full,
html body .single-post-content .size-large {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
}

html body .single-post-content figure,
html body .single-post-content .wp-block-image,
html body .single-post-content .wp-caption {
    margin-top: 1.65rem !important;
    margin-bottom: 1.65rem !important;
    border-radius: .95rem !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid rgba(203, 213, 225, 0.72) !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055) !important;
}

html body .single-post-content img,
html body .single-post-featured img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

html body .single-post-content img[data-dm-lightbox],
html body .single-post-featured img[data-dm-lightbox] {
    cursor: zoom-in !important;
}

html body .single-post-content figcaption,
html body .single-post-content .wp-element-caption,
html body .single-post-content .wp-caption-text,
html body .single-post-featured figcaption {
    display: block !important;
    width: 100% !important;
    padding: .82rem 1rem !important;
    margin: 0 !important;
    border-top: 1px solid rgba(226, 232, 240, 0.88) !important;
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
    color: #64748b !important;
    font-size: .84rem !important;
    line-height: 1.5 !important;
    font-style: italic !important;
    text-align: center !important;
}

/* Responsive embeds: YouTube/Vimeo/social posts stay inside the article. */
html body .single-post-content .wp-block-embed,
html body .single-post-content .wp-block-video,
html body .single-post-content .wp-block-media-text,
html body .single-post-content .embed-youtube,
html body .single-post-content .embed-vimeo {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.75rem 0 !important;
}

html body .single-post-content .wp-block-embed__wrapper,
html body .single-post-content .dm-responsive-embed {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: .95rem !important;
    background: #020617 !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08) !important;
}

html body .single-post-content .wp-block-embed__wrapper:has(iframe[src*="youtube"]),
html body .single-post-content .wp-block-embed__wrapper:has(iframe[src*="youtu.be"]),
html body .single-post-content .wp-block-embed__wrapper:has(iframe[src*="vimeo"]),
html body .single-post-content .dm-responsive-embed {
    aspect-ratio: 16 / 9 !important;
}

html body .single-post-content iframe[src*="youtube"],
html body .single-post-content iframe[src*="youtu.be"],
html body .single-post-content iframe[src*="vimeo"],
html body .single-post-content .dm-responsive-embed iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    display: block !important;
    border: 0 !important;
}

html body .single-post-content iframe,
html body .single-post-content embed,
html body .single-post-content object,
html body .single-post-content video {
    max-width: 100% !important;
}

html body .single-post-content blockquote.instagram-media,
html body .single-post-content .tiktok-embed,
html body .single-post-content .twitter-tweet,
html body .single-post-content .wp-block-embed-instagram,
html body .single-post-content .wp-block-embed-tiktok,
html body .single-post-content .wp-block-embed-twitter,
html body .single-post-content .wp-block-embed-linkedin {
    width: 100% !important;
    max-width: min(100%, 640px) !important;
    min-width: 0 !important;
    margin: 1.8rem auto !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
}

/* Sticky service sidebar, reduced gap/radius. */
html body .blog-sidebar {
    position: sticky !important;
    top: 94px !important;
    align-self: start !important;
}
html body .blog-sidebar-sticky {
    position: static !important;
    top: auto !important;
}
html body .blog-sidebar-card {
    border-radius: .92rem !important;
    padding: 1rem !important;
}
html body .blog-sidebar-service {
    border-radius: .68rem !important;
}

/* Lightbox */
html body .dm-lightbox-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    background: rgba(2, 6, 23, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
html body .dm-lightbox-overlay.is-open {
    display: flex !important;
}
html body .dm-lightbox-inner {
    position: relative !important;
    max-width: min(1180px, 94vw) !important;
    max-height: 92vh !important;
}
html body .dm-lightbox-img {
    display: block !important;
    max-width: 100% !important;
    max-height: 86vh !important;
    width: auto !important;
    height: auto !important;
    border-radius: .9rem !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.55) !important;
}
html body .dm-lightbox-caption {
    margin-top: .8rem !important;
    color: rgba(226,232,240,.82) !important;
    font-size: .9rem !important;
    text-align: center !important;
}
html body .dm-lightbox-close {
    position: fixed !important;
    top: 1.2rem !important;
    right: 1.2rem !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
}

@media (max-width: 1100px) {
    html body .single-post-layout {
        grid-template-columns: 1fr !important;
        gap: 1.1rem !important;
    }
    html body .blog-sidebar {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 760px) {
    html body .single-post-hero {
        padding: 6.6rem 0 2.7rem !important;
    }
    html body .single-post-title {
        font-size: clamp(2.1rem, 10vw, 3rem) !important;
        line-height: 1.08 !important;
        font-weight: 760 !important;
        letter-spacing: -0.05em !important;
    }
    html body .single-post-article {
        padding: 20px !important;
        border-radius: .9rem !important;
    }
    html body .single-post-content {
        max-width: 100% !important;
        font-size: 1rem !important;
        line-height: 1.76 !important;
    }
    html body .single-post-content h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem) !important;
    }
    html body .single-post-content h3 {
        font-size: clamp(1.28rem, 5.8vw, 1.6rem) !important;
    }
    html body .single-post-content figure,
    html body .single-post-content .wp-block-image,
    html body .single-post-featured {
        border-radius: .82rem !important;
        margin: 1.2rem 0 !important;
    }
    html body .single-post-content figcaption,
    html body .single-post-content .wp-element-caption,
    html body .single-post-content .wp-caption-text,
    html body .single-post-featured figcaption {
        padding: .72rem .8rem !important;
        font-size: .78rem !important;
    }
    html body .single-post-content .wp-block-embed__wrapper,
    html body .single-post-content .dm-responsive-embed {
        border-radius: .82rem !important;
    }
    html body .dm-lightbox-overlay {
        padding: 1rem !important;
    }
}

/* ============================================
   v1.5.7 ABOUT SECTION FINAL POLISH
   - Checklist cards are cleaner
   - Proof numbers + AI quote sit under portrait image
   ============================================ */
html body .about-grid.about-grid-with-left-proof {
    align-items: center !important;
}

html body .about-content .about-checklist {
    margin-top: 1.65rem !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.95rem 1.15rem !important;
}

html body .about-content .about-checklist .check-item {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    padding: 0.95rem 1rem !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(14, 165, 233, 0.12) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045) !important;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

html body .about-content .about-checklist .check-item:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(14, 165, 233, 0.24) !important;
    box-shadow: 0 18px 42px rgba(14, 165, 233, 0.075) !important;
}

html body .about-content .about-checklist .check-item > .material-symbols-rounded {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    margin-top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(16, 185, 129, 0.14)) !important;
    color: #10b981 !important;
    font-size: 18px !important;
}

html body .about-content .about-checklist .check-item strong {
    margin: 0 0 0.2rem !important;
    display: block !important;
    color: #111827 !important;
    font-size: 0.93rem !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
}

html body .about-content .about-checklist .check-item p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 0.8rem !important;
    line-height: 1.38 !important;
}

html body .about-visual-proof {
    width: 100% !important;
    max-width: 520px !important;
    margin: 1.05rem auto 0 !important;
}

html body .about-visual-proof .about-proof-strip {
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
}

html body .about-visual-proof .about-proof-item {
    min-height: 84px !important;
    padding: 1rem 0.7rem !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(14, 165, 233, 0.12) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05) !important;
    text-align: center !important;
}

html body .about-visual-proof .about-proof-item strong {
    display: block !important;
    font-size: 1.55rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
    color: #0f172a !important;
}

html body .about-visual-proof .about-proof-item span {
    display: block !important;
    margin-top: 0.3rem !important;
    font-size: 0.69rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #64748b !important;
}

html body .about-visual-proof .about-mini-quote {
    width: 100% !important;
    margin: 1rem 0 0 !important;
    padding: 1.15rem 1.2rem !important;
    border-radius: 1.05rem !important;
    background: linear-gradient(135deg, rgba(224,242,254,.78), rgba(204,251,241,.55)) !important;
    border: 1px solid rgba(56,189,248,.20) !important;
    box-shadow: 0 16px 42px rgba(14,165,233,.07) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: .85rem !important;
    text-align: left !important;
}

html body .about-visual-proof .about-mini-quote .material-symbols-rounded {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(14,165,233,.12) !important;
    color: #0ea5e9 !important;
    font-size: 17px !important;
}

html body .about-visual-proof .about-mini-quote p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    color: #475569 !important;
    font-style: italic !important;
}

/* Prevent old left-proof styles from affecting the new visual proof location */
html body .about-content .about-proof-strip,
html body .about-content .about-mini-quote {
    display: none !important;
}
html body .about-visual-proof .about-proof-strip,
html body .about-visual-proof .about-mini-quote {
    display: grid !important;
}
html body .about-visual-proof .about-mini-quote {
    display: flex !important;
}

@media (max-width: 980px) {
    html body .about-content .about-checklist {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    html body .about-visual-proof {
        max-width: 620px !important;
    }
}

@media (max-width: 680px) {
    html body .about-content .about-checklist {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    html body .about-content .about-checklist .check-item {
        padding: 0.88rem 0.95rem !important;
        border-radius: 0.9rem !important;
    }
    html body .about-visual-proof {
        max-width: 100% !important;
        margin-top: 0.85rem !important;
    }
    html body .about-visual-proof .about-proof-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0.55rem !important;
    }
    html body .about-visual-proof .about-proof-item {
        min-height: 72px !important;
        padding: 0.72rem 0.35rem !important;
        border-radius: 0.82rem !important;
    }
    html body .about-visual-proof .about-proof-item strong {
        font-size: 1.32rem !important;
    }
    html body .about-visual-proof .about-proof-item span {
        font-size: 0.56rem !important;
        line-height: 1.15 !important;
    }
    html body .about-visual-proof .about-mini-quote {
        padding: 0.95rem !important;
        gap: 0.7rem !important;
        border-radius: 0.95rem !important;
    }
    html body .about-visual-proof .about-mini-quote .material-symbols-rounded {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 16px !important;
    }
    html body .about-visual-proof .about-mini-quote p {
        font-size: 0.82rem !important;
        line-height: 1.48 !important;
    }
}

/* ============================================
   v1.5.8 FINAL POLISH: About portrait, post lists, tags/share, footer Elementor icon
   ============================================ */

/* About image: remove the extra white/gradient frame; keep the real image clean. */
html body .about-portrait-wrap {
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
html body .about-portrait-card {
    min-height: 560px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 1.45rem !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}
html body .about-portrait-card::before,
html body .about-portrait-glow {
    display: none !important;
}
html body .about-portrait-media {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 560px !important;
    border-radius: 1.45rem !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: 0 24px 62px rgba(15, 23, 42, .10) !important;
}
html body .about-portrait-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
}
html body .about-portrait-badge {
    background: rgba(7, 10, 18, .56) !important;
    color: rgba(255,255,255,.94) !important;
    border-color: rgba(255,255,255,.14) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
}
html body .about-portrait-caption {
    left: 1.1rem !important;
    right: 1.1rem !important;
    bottom: 1.1rem !important;
}
html body .about-visual-proof {
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
@media (max-width: 680px) {
    html body .about-portrait-card,
    html body .about-portrait-media,
    html body .about-portrait-media img {
        min-height: 430px !important;
    }
    html body .about-portrait-card,
    html body .about-portrait-media {
        border-radius: 1.1rem !important;
    }
    html body .about-portrait-badge {
        display: none !important;
    }
}

/* Single post lists: make ul/ol look designed instead of plain text. */
html body .single-post-content ul,
html body .single-post-content ol {
    margin: 1.5rem 0 1.65rem !important;
    padding: 1rem 1rem 1rem 1.05rem !important;
    border-radius: .95rem !important;
    background: linear-gradient(135deg, rgba(248, 250, 252, .95), rgba(240, 249, 255, .78)) !important;
    border: 1px solid rgba(203, 213, 225, .72) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .045) !important;
    list-style: none !important;
}
html body .single-post-content ul li,
html body .single-post-content ol li {
    position: relative !important;
    margin: 0 !important;
    padding: .62rem .75rem .62rem 2.15rem !important;
    border-radius: .75rem !important;
    color: #253248 !important;
    line-height: 1.58 !important;
}
html body .single-post-content ul li + li,
html body .single-post-content ol li + li {
    margin-top: .18rem !important;
}
html body .single-post-content ul li::before {
    content: 'check' !important;
    font-family: 'Material Symbols Rounded' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 17px !important;
    line-height: 1 !important;
    position: absolute !important;
    left: .55rem !important;
    top: .82rem !important;
    width: 23px !important;
    height: 23px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #10b981 !important;
    background: rgba(16, 185, 129, .10) !important;
}
html body .single-post-content ol {
    counter-reset: dm-post-list !important;
}
html body .single-post-content ol li {
    counter-increment: dm-post-list !important;
}
html body .single-post-content ol li::before {
    content: counter(dm-post-list) !important;
    position: absolute !important;
    left: .55rem !important;
    top: .72rem !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: linear-gradient(135deg, #0ea5e9, #10b981) !important;
    font-size: .72rem !important;
    font-weight: 850 !important;
}
html body .single-post-content li:hover {
    background: rgba(255,255,255,.62) !important;
}

/* Single post footer: no double share box, only clean tags + share pills. */
html body .single-post-footer {
    max-width: 800px !important;
    margin: 2rem auto 0 !important;
    padding-top: 1.2rem !important;
    border-top: 1px solid rgba(203, 213, 225, .72) !important;
}
html body .single-post-footer .post-tags,
html body .single-post-footer .dm-share {
    max-width: none !important;
    margin: 0 0 1rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
html body .post-tags {
    display: flex !important;
    gap: .5rem !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}
html body .post-tags-icon {
    color: #0f172a !important;
    font-size: 20px !important;
    margin-right: .15rem !important;
}
html body .post-tags a,
html body .dm-tags-more {
    min-height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: .38rem .74rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(14, 165, 233, .12) !important;
    background: rgba(14, 165, 233, .08) !important;
    color: #0284c7 !important;
    font-size: .78rem !important;
    font-weight: 820 !important;
    line-height: 1 !important;
}
html body .post-tags .is-extra-tag {
    display: none !important;
}
html body .post-tags.is-expanded .is-extra-tag {
    display: inline-flex !important;
}
html body .dm-tags-more {
    cursor: pointer !important;
    color: #0f172a !important;
    background: #fff !important;
    border-color: rgba(203,213,225,.92) !important;
}
html body .post-tags.is-expanded .dm-tags-more {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
html body .single-post-footer .dm-share {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: .55rem !important;
}
html body .single-post-footer .dm-share-label {
    font-size: .9rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    margin-right: .15rem !important;
}
html body .single-post-footer .dm-share-btn {
    height: 34px !important;
    padding: 0 .78rem !important;
    border-radius: 999px !important;
    background: #fff !important;
    border: 1px solid rgba(203, 213, 225, .95) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .035) !important;
}
html body .single-post-footer .dm-share-btn:hover {
    border-color: rgba(14,165,233,.34) !important;
    color: #0ea5e9 !important;
}
@media (max-width: 680px) {
    html body .single-post-content ul,
    html body .single-post-content ol {
        padding: .75rem !important;
        border-radius: .82rem !important;
    }
    html body .single-post-content ul li,
    html body .single-post-content ol li {
        padding: .56rem .55rem .56rem 1.95rem !important;
    }
    html body .single-post-content ul li::before,
    html body .single-post-content ol li::before {
        left: .45rem !important;
    }
    html body .single-post-footer .dm-share-label {
        width: auto !important;
    }
    html body .single-post-footer .dm-share-btn {
        flex: 0 0 auto !important;
    }
}

/* Footer Elementor icon: white glyph inside Elementor gradient circle. */
html body .footer-proof-elementor .footer-elementor-icon::before {
    background: #ffffff !important;
}


/* ============================================
   Elementor showcase thumbnail + hover reveal fix - v1.5.9
   ============================================ */
.elementor-site-card {
    background: #0f172a !important;
}

.elementor-site-thumb {
    position: absolute !important;
    inset: 0 !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #ffb8e5 0%, #ed01ee 48%, #06263b 100%) !important;
}

.elementor-site-thumb.has-thumb {
    background: #020617 !important;
}

.elementor-site-thumb img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    z-index: 0 !important;
    opacity: 1 !important;
    transform: scale(1.01) !important;
    transition: transform 260ms ease, filter 260ms ease !important;
}

.elementor-site-card:hover .elementor-site-thumb img,
.elementor-site-card:focus-visible .elementor-site-thumb img {
    transform: scale(1.045) !important;
    filter: saturate(1.05) contrast(1.03) !important;
}

.elementor-site-thumb::after {
    z-index: 1 !important;
    background:
        linear-gradient(180deg, rgba(2,6,23,0.05) 0%, rgba(2,6,23,0.28) 48%, rgba(2,6,23,0.88) 100%),
        radial-gradient(circle at 12% 10%, rgba(237,1,238,.16), transparent 32%),
        radial-gradient(circle at 90% 0%, rgba(14,165,233,.12), transparent 30%) !important;
}

.elementor-site-thumb .material-symbols-rounded,
.elementor-site-arrow {
    z-index: 4 !important;
}

.elementor-site-info {
    z-index: 5 !important;
    bottom: 1rem !important;
    padding: 1rem 1rem !important;
    border-radius: 1rem !important;
    background: rgba(2, 6, 23, 0.72) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transform: translateY(0) !important;
}

.elementor-site-info strong {
    display: block !important;
    margin: 0 !important;
    color: #ffffff !important;
}

/* Default state: show title only. Description opens on hover/focus. */
.elementor-site-info p {
    display: block !important;
    margin: 0 !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(4px) !important;
    transition: opacity 200ms ease, max-height 220ms ease, margin-top 200ms ease, transform 200ms ease !important;
}

.elementor-site-card:hover .elementor-site-info p,
.elementor-site-card:focus-visible .elementor-site-info p {
    margin-top: .5rem !important;
    opacity: 1 !important;
    max-height: 90px !important;
    transform: translateY(0) !important;
}

@media (max-width: 680px) {
    .elementor-site-info p,
    .elementor-site-card:hover .elementor-site-info p,
    .elementor-site-card:focus-visible .elementor-site-info p {
        display: none !important;
    }

    .elementor-site-info {
        padding: .85rem .9rem !important;
        border-radius: .9rem !important;
    }
}

/* ============================================
   Elementor Pro showcase 4-card visibility fix - v1.6.0
   ============================================ */
html body .elementor-pro-showcase.show-all-sites .elementor-sites-rail,
html body .elementor-pro-showcase:not(.has-more-sites) .elementor-sites-rail {
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: .35rem !important;
}

@media (min-width: 681px) {
    html body .elementor-pro-showcase.show-all-sites .elementor-sites-rail,
    html body .elementor-pro-showcase:not(.has-more-sites) .elementor-sites-rail {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }

    html body .elementor-pro-showcase.show-all-sites .elementor-site-card,
    html body .elementor-pro-showcase:not(.has-more-sites) .elementor-site-card {
        height: 260px !important;
        min-height: 260px !important;
        position: relative !important;
    }

    html body .elementor-pro-showcase.elementor-site-count-4 .elementor-sites-rail {
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 680px) {
    html body .elementor-pro-showcase.show-all-sites,
    html body .elementor-pro-showcase:not(.has-more-sites) {
        overflow: visible !important;
    }

    html body .elementor-pro-showcase.show-all-sites .elementor-sites-rail,
    html body .elementor-pro-showcase:not(.has-more-sites) .elementor-sites-rail {
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        touch-action: pan-x pan-y !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* =========================================================
   Blog archives and card meta cleanup - v1.6.1
   ========================================================= */
html body .blog-card-meta span:first-child:last-child {
    background: rgba(14,165,233,.09) !important;
    color: #0284c7 !important;
}

html body .dm-blog-archive-pro.blog-archive-page {
    padding: 0 !important;
    min-height: 70vh !important;
    background: var(--bg-light) !important;
}

html body .blog-archive-hero.single-post-hero {
    min-height: 430px !important;
    padding: 9rem 0 5.5rem !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

html body .blog-archive-hero .blog-archive-hero-inner {
    max-width: 1120px !important;
    width: 100% !important;
}

html body .blog-archive-hero .single-post-title {
    max-width: 1120px !important;
    font-size: clamp(2.55rem, 6vw, 5.15rem) !important;
    line-height: .98 !important;
    letter-spacing: -.075em !important;
    font-weight: 850 !important;
}

html body .single-post-hero-subtitle {
    max-width: 760px !important;
    margin: 1rem 0 0 !important;
    color: rgba(226,232,240,.78) !important;
    font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
    line-height: 1.65 !important;
}

html body .single-post-hero-subtitle strong {
    color: #fff !important;
}

html body .blog-archive-body {
    padding: 4.5rem 0 6rem !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(14,165,233,.10), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(16,185,129,.08), transparent 34%),
        var(--bg-light) !important;
}

html body .blog-archive-body .container {
    position: relative !important;
}

html body .dm-search-pro .dm-search-form {
    max-width: 820px !important;
    margin: 0 auto 2.2rem !important;
    padding: .65rem !important;
    border: 1px solid rgba(203,213,225,.86) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.86) !important;
    box-shadow: 0 18px 54px rgba(15,23,42,.06) !important;
}

html body .dm-search-pro .dm-search-form input {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    html body .blog-archive-hero.single-post-hero {
        min-height: 340px !important;
        padding: 7.2rem 0 3.7rem !important;
    }

    html body .blog-archive-hero .single-post-title {
        font-size: clamp(2.15rem, 12vw, 3.4rem) !important;
        letter-spacing: -.055em !important;
    }

    html body .blog-archive-body {
        padding: 2.8rem 0 4.5rem !important;
    }

    html body .dm-search-pro .dm-search-form {
        border-radius: 1.25rem !important;
        display: grid !important;
        gap: .65rem !important;
    }

    html body .dm-search-pro .dm-search-form .btn {
        width: 100% !important;
    }
}

/* =========================================================
   Archive hero alignment and lighter title weight - v1.6.2
   ========================================================= */
html body .blog-archive-hero .blog-archive-hero-inner,
html body .dm-search-pro .blog-archive-hero-inner {
    width: min(1120px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

html body .blog-archive-hero .single-post-kicker.section-tag,
html body .dm-search-pro .single-post-kicker.section-tag {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.2rem !important;
    font-weight: 550 !important;
    letter-spacing: .085em !important;
}

html body .blog-archive-hero .single-post-title,
html body .dm-search-pro .single-post-title {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-weight: 760 !important;
    letter-spacing: -.055em !important;
    text-wrap: balance !important;
}

html body .blog-archive-hero .single-post-hero-subtitle,
html body .dm-search-pro .single-post-hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

html body .blog-archive-hero .dm-breadcrumbs,
html body .dm-search-pro .dm-breadcrumbs {
    width: 100% !important;
    margin: 1.2rem auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
}

html body .blog-archive-hero .dm-breadcrumbs ol,
html body .dm-search-pro .dm-breadcrumbs ol {
    justify-content: center !important;
}

@media (max-width: 768px) {
    html body .blog-archive-hero .single-post-title,
    html body .dm-search-pro .single-post-title {
        font-weight: 740 !important;
        letter-spacing: -.045em !important;
    }
}


/* Service card image support - v1.6.3 */
html body .service-card.has-service-image {
    padding: 0 !important;
    gap: 0 !important;
}
html body .service-card.has-service-image > h3,
html body .service-card.has-service-image > p,
html body .service-card.has-service-image .service-features,
html body .service-card.has-service-image .service-read-more {
    margin-left: 2rem;
    margin-right: 2rem;
}
html body .service-card.has-service-image > h3 {
    margin-top: 1.55rem;
}
html body .service-card.has-service-image > p,
html body .service-card.has-service-image .service-features,
html body .service-card.has-service-image .service-read-more {
    margin-top: .75rem;
}
html body .service-card.has-service-image .service-read-more {
    margin-bottom: 1.75rem;
}
html body .service-card-media {
    position: relative;
    height: min(250px, 34vw);
    min-height: 190px;
    width: 100%;
    overflow: hidden;
    border-radius: calc(var(--radius-2xl) - 1px) calc(var(--radius-2xl) - 1px) 0 0;
    background: linear-gradient(135deg, rgba(14,165,233,.20), rgba(45,212,191,.10));
    border-bottom: 1px solid rgba(255,255,255,.08);
    isolation: isolate;
}
html body .service-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2,6,23,.08) 0%, rgba(2,6,23,.28) 58%, rgba(2,6,23,.70) 100%),
        radial-gradient(circle at 80% 16%, rgba(56,189,248,.20), transparent 36%);
    pointer-events: none;
}
html body .service-card-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.01);
    transition: transform .55s ease, filter .55s ease;
}
html body .service-card:hover .service-card-media img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}
html body .service-card-media-icon {
    position: absolute;
    left: 1.35rem;
    bottom: 1.25rem;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.94);
    color: var(--accent) !important;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 18px 40px rgba(2,6,23,.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
html body .service-card:hover .service-card-media-icon {
    transform: translateY(-3px) scale(1.04);
    background: #fff;
}
html body .service-card-media-icon .material-symbols-rounded {
    font-size: 31px !important;
    line-height: 1;
    color: var(--accent) !important;
}
@media (max-width: 980px) {
    html body .service-card-media {
        height: 220px;
        min-height: 210px;
    }
}
@media (max-width: 640px) {
    html body .service-card.has-service-image > h3,
    html body .service-card.has-service-image > p,
    html body .service-card.has-service-image .service-features,
    html body .service-card.has-service-image .service-read-more {
        margin-left: 1.35rem;
        margin-right: 1.35rem;
    }
    html body .service-card-media {
        height: 205px;
        min-height: 205px;
    }
    html body .service-card-media-icon {
        width: 50px;
        height: 50px;
        left: 1rem;
        bottom: 1rem;
    }
    html body .service-card-media-icon .material-symbols-rounded {
        font-size: 28px !important;
    }
}


/* Service offcanvas image support - v1.6.4
   Images are intentionally shown inside the offcanvas only, not on service cards. */
html body .offcanvas-service-media {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    margin: 0 0 1.65rem !important;
    background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(45,212,191,.08)) !important;
    border: 1px solid rgba(56,189,248,.22) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.28) !important;
    isolation: isolate !important;
}
html body .offcanvas-service-media::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(180deg, rgba(2,6,23,.08) 0%, rgba(2,6,23,.22) 54%, rgba(2,6,23,.62) 100%),
        radial-gradient(circle at 78% 16%, rgba(56,189,248,.22), transparent 36%) !important;
    pointer-events: none !important;
}
html body .offcanvas-service-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}
html body .offcanvas-service-media-icon {
    position: absolute !important;
    left: 1.15rem !important;
    bottom: 1.05rem !important;
    z-index: 2 !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.96) !important;
    color: var(--accent) !important;
    border: 1px solid rgba(255,255,255,.74) !important;
    box-shadow: 0 16px 42px rgba(2,6,23,.34) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
html body .offcanvas-service-media-icon .material-symbols-rounded {
    font-size: 31px !important;
    line-height: 1 !important;
    color: var(--accent) !important;
}
html body .offcanvas-body:has(.offcanvas-service-media) > .offcanvas-icon {
    display: none !important;
}
html body .offcanvas-body h3 {
    margin-top: 0 !important;
}
@media (max-width: 640px) {
    html body .offcanvas-service-media {
        height: 210px !important;
        border-radius: 16px !important;
        margin-bottom: 1.35rem !important;
    }
    html body .offcanvas-service-media-icon {
        width: 50px !important;
        height: 50px !important;
        left: 1rem !important;
        bottom: 1rem !important;
    }
    html body .offcanvas-service-media-icon .material-symbols-rounded {
        font-size: 28px !important;
    }
}
