:root {
    --bg: #fafaf9;
    --bg-warm: #f3f2ef;
    --text: #171717;
    --text-soft: #525252;
    --text-muted: #a3a3a3;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --accent-soft: #eff6ff;
    --border: #e5e5e5;
    --border-soft: #f0f0eb;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.10);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font); background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; line-height:1.5; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:0; background:none; font-size:inherit; color:inherit; }
img { max-width:100%; display:block; }
.container { width:min(100% - 2rem, 1200px); margin-inline:auto; }
.material-symbols-rounded { font-family:'Material Symbols Rounded'; font-weight:400; font-style:normal; font-size:1.2em; line-height:1; display:inline-block; -webkit-font-smoothing:antialiased; }

/* ==================== OVERLAY ==================== */
.overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:150; opacity:0; visibility:hidden; transition:all 0.35s ease; backdrop-filter:blur(4px); }
.overlay.active { opacity:1; visibility:visible; }

/* ==================== HEADER ==================== */
.header { position:fixed; top:1.5rem; left:50%; transform:translateX(-50%); z-index:100; width:min(95%, 1200px); display:flex; align-items:center; justify-content:space-between; padding:0.7rem 1.5rem; background:rgba(255,255,255,0.7); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border:1px solid rgba(0,0,0,0.06); border-radius:100px; transition:all 0.3s ease; }
.header.scrolled { top:0; border-radius:0; width:100%; border-left:none; border-right:none; border-top:none; background:rgba(255,255,255,0.92); box-shadow:0 1px 0 rgba(0,0,0,0.05); }
.logo { font-weight:800; font-size:1rem; letter-spacing:-0.02em; display:flex; align-items:center; gap:0.35rem; }
.logo-mark { width:28px; height:28px; background:var(--accent); border-radius:7px; display:grid; place-items:center; color:#fff; font-size:0.7rem; font-weight:900; }
.logo-accent { color:var(--accent); }
.nav-links { display:flex; gap:0.25rem; }
.nav-links a { padding:0.4rem 0.9rem; border-radius:100px; font-size:0.8rem; font-weight:500; color:var(--text-soft); transition:all 0.2s; }
.nav-links a:hover { background:rgba(0,0,0,0.04); color:var(--text); }
.header-btn { font-size:0.8rem; font-weight:600; background:var(--text); color:#fff; padding:0.5rem 1.2rem; border-radius:100px; transition:all 0.2s; }
.header-btn:hover { background:var(--accent); }
.menu-toggle { display:none; width:38px; height:38px; border-radius:50%; background:rgba(0,0,0,0.04); place-items:center; color:var(--text); transition:all 0.2s; }
.menu-toggle:hover { background:rgba(0,0,0,0.08); }

/* ==================== OFFCANVAS ==================== */
.offcanvas { position:fixed; top:0; right:0; width:420px; max-width:88vw; height:100svh; background:#fff; z-index:200; padding:2rem; display:flex; flex-direction:column; transform:translateX(100%); transition:transform 0.4s cubic-bezier(0.22,1,0.36,1); box-shadow:-20px 0 60px rgba(0,0,0,0.1); overflow-y:auto; }
.offcanvas.active { transform:translateX(0); }
.offcanvas-service { z-index:250; }
.offcanvas-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:2rem; }
.offcanvas-close { width:40px; height:40px; border-radius:50%; background:var(--bg); display:grid; place-items:center; color:var(--text); transition:all 0.2s; }
.offcanvas-close:hover { background:#e5e5e5; }
.offcanvas-nav { display:flex; flex-direction:column; gap:0.25rem; flex:1; }
.offcanvas-link { font-size:1.5rem; font-weight:700; letter-spacing:-0.02em; color:var(--text); padding:0.6rem 0; transition:all 0.2s; border-bottom:1px solid var(--border-soft); display:flex; align-items:center; justify-content:space-between; }
.offcanvas-link::after { content:'→'; font-size:1.2rem; opacity:0; transform:translateX(-10px); transition:all 0.2s; color:var(--accent); }
.offcanvas-link:hover { color:var(--accent); padding-left:0.5rem; }
.offcanvas-link:hover::after { opacity:1; transform:translateX(0); }
.offcanvas-bottom { display:flex; flex-direction:column; gap:2rem; padding-top:1.5rem; border-top:1px solid var(--border-soft); }
.offcanvas-cta { padding:0.85rem 1.5rem!important; font-size:0.9rem!important; }
.offcanvas-socials { display:flex; gap:1rem; justify-content:center; }
.social-link { width:42px; height:42px; border-radius:50%; background:var(--bg); display:grid; place-items:center; color:var(--text-soft); transition:all 0.25s; }
.social-link:hover { background:var(--accent); color:#fff; transform:translateY(-2px); }

/* Service offcanvas */
.service-nav-btns { display:flex; gap:0.5rem; }
.service-nav-btn { display:flex; align-items:center; gap:0.3rem; padding:0.5rem 0.9rem; border-radius:100px; font-size:0.78rem; font-weight:600; color:var(--text); border:1px solid var(--border); transition:all 0.2s; }
.service-nav-btn:hover { border-color:var(--accent); color:var(--accent); }
.offcanvas-body { flex:1; display:flex; flex-direction:column; }
.offcanvas-body .modal-image { width:100%; aspect-ratio:16/9; border-radius:14px; overflow:hidden; background:var(--bg-soft); margin-bottom:1.25rem; }
.offcanvas-body .modal-image img { width:100%; height:100%; object-fit:cover; }
.offcanvas-body .modal-icon-wrap { width:48px; height:48px; border-radius:14px; background:var(--accent-soft); display:grid; place-items:center; margin-bottom:0.75rem; color:var(--accent); font-size:1.3rem; }
.offcanvas-body .modal-title { font-family:var(--font-display); font-size:1.4rem; font-weight:800; letter-spacing:-0.02em; margin-bottom:0.5rem; color:var(--text); }
.offcanvas-body .modal-desc { font-size:0.88rem; color:var(--text-soft); line-height:1.6; margin-bottom:1.25rem; flex:1; }
.offcanvas-body .modal-list { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:1.5rem; }
.offcanvas-body .modal-list li { font-size:0.84rem; color:var(--text-soft); display:flex; align-items:center; gap:0.4rem; }
.offcanvas-body .modal-list .material-symbols-rounded { color:#22c55e; font-size:0.9rem; flex-shrink:0; }

/* ==================== BUTTONS ==================== */
.btn { display:inline-flex; align-items:center; gap:0.4rem; padding:0.8rem 1.6rem; border-radius:100px; font-weight:600; font-size:0.88rem; transition:all 0.2s; white-space:nowrap; }
.btn-primary { background:var(--accent); color:#fff; }
.btn-primary:hover { background:var(--accent-dark); transform:translateY(-1px); }
.btn-outline { border:1.5px solid var(--border); color:var(--text); background:rgba(255,255,255,0.6); }
.btn-outline:hover { border-color:#a3a3a3; background:#fff; }
.btn-block { width:100%; justify-content:center; }
.btn-lg { padding:0.9rem 1.8rem; font-size:0.92rem; }

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align:center; margin-bottom:3rem; }
.section-eyebrow { display:inline-block; font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; font-weight:700; color:var(--accent); margin-bottom:0.6rem; }
.section-heading { font-family:var(--font-display); font-size:clamp(2rem, 4vw, 2.8rem); font-weight:800; letter-spacing:-0.03em; line-height:1.12; margin-bottom:0.65rem; }
.section-heading .accent { color:var(--accent); }
.section-sub { font-size:0.95rem; color:var(--text-soft); max-width:540px; margin:0 auto; line-height:1.55; }

/* ==================== HERO ==================== */
.hero { min-height:100svh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:8rem 2rem 4rem; position:relative; background:var(--bg); overflow:hidden; }
.refokus-lines { position:absolute; top:0; left:0; right:0; height:100%; margin:auto; width:90vw; pointer-events:none; z-index:0; }
.r-line { position:absolute; width:1px; height:100%; top:0; left:50%; background:rgba(0,0,0,0.06); overflow:hidden; }
.r-line::after { content:''; display:block; position:absolute; height:12vh; width:100%; top:-50%; left:0; background:linear-gradient(to bottom, rgba(37,99,235,0) 0%, rgba(37,99,235,0.5) 50%, rgba(37,99,235,0.8) 100%); animation:drop-line 6s 0s infinite; animation-fill-mode:forwards; animation-timing-function:cubic-bezier(0.4,0.26,0,0.97); }
.r-line:nth-child(1) { margin-left:-20%; }
.r-line:nth-child(1)::after { animation-delay:0s; }
.r-line:nth-child(3) { margin-left:20%; }
.r-line:nth-child(3)::after { animation-delay:2.5s; }
@keyframes drop-line { 0% { top:-50%; } 100% { top:110%; } }
.hero-content-wrap { position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:0.4rem; padding:0.3rem 0.8rem; background:#eff6ff; border-radius:100px; font-size:0.72rem; font-weight:600; color:var(--accent); margin-bottom:1.5rem; }
.hero-badge-dot { width:6px; height:6px; background:#22c55e; border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.4);} 50%{box-shadow:0 0 0 8px rgba(34,197,94,0);} }
.hero-title { font-family:var(--font-display); font-size:clamp(3rem, 8vw, 6.2rem); font-weight:800; line-height:0.95; letter-spacing:-0.04em; max-width:900px; margin-bottom:1.25rem; }
.hero-accent-word { color:var(--accent); position:relative; }
.hero-accent-word::after { content:''; position:absolute; bottom:0.05em; left:0; right:0; height:0.15em; background:var(--accent); opacity:0.25; border-radius:2px; }
.hero-rotating-text { display:inline-block; min-width:200px; transition:opacity 0.3s ease; }
.hero-sub { font-size:1.05rem; color:var(--text-soft); max-width:600px; line-height:1.6; margin:0 auto 2rem; }
.hero-sub strong { color:var(--text); }
.hero-btns { display:flex; gap:0.75rem; flex-wrap:wrap; justify-content:center; }

/* ==================== MARQUEE ==================== */
.sites-showcase { width:100%; overflow:hidden; padding:0 0 3rem; background:var(--bg); position:relative; z-index:1; }
.sites-label { text-align:center; font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); font-weight:600; margin-bottom:1.25rem; }
.sites-marquee-wrap { overflow:hidden; mask-image:linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); -webkit-mask-image:linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
.sites-track { display:flex; gap:0.75rem; animation:scroll-sites 55s linear infinite; width:max-content; }
.sites-track-reverse { animation-direction:reverse; animation-duration:65s; margin-top:0.75rem; }
.sites-track:hover { animation-play-state:paused; }
.site-card { flex-shrink:0; width:240px; aspect-ratio:16/10; border-radius:12px; overflow:hidden; background:#e5e5e5; position:relative; transition:transform 0.3s; cursor:default; }
.site-card:hover { transform:scale(1.04); z-index:5; }
.site-card img { width:100%; height:100%; object-fit:cover; }
.site-card-overlay { position:absolute; bottom:0; left:0; right:0; padding:0.6rem 0.7rem; background:linear-gradient(transparent, rgba(0,0,0,0.6)); color:#fff; font-size:0.65rem; font-weight:600; letter-spacing:0.02em; display:flex; align-items:center; gap:0.2rem; }
.site-card-overlay .material-symbols-rounded { font-size:0.75rem; }
@keyframes scroll-sites { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ==================== ABOUT ==================== */
.about { padding:6rem 0; background:var(--bg); position:relative; overflow:hidden; }
.about-gradient { position:absolute; inset:0; background:linear-gradient(135deg, #eff6ff 0%, #fafaf9 40%, #e8f4fd 70%, #fafaf9 100%); pointer-events:none; z-index:0; }
.about .container { position:relative; z-index:1; }
.about-grid { display:grid; grid-template-columns:38fr 62fr; gap:2.5rem; align-items:start; }
.about-left { display:flex; justify-content:flex-start; }
.about-image-wrap { position:relative; width:100%; max-width:420px; aspect-ratio:3/4; border-radius:20px; overflow:visible; }
.about-image-wrap > img { width:100%; height:100%; object-fit:cover; border-radius:20px; box-shadow:var(--shadow-lg); }
.about-badge { position:absolute; background:#fff; border:1px solid var(--border); border-radius:12px; padding:0.5rem 0.8rem; display:flex; align-items:center; gap:0.4rem; font-size:0.7rem; font-weight:600; color:var(--text); box-shadow:var(--shadow-md); white-space:nowrap; z-index:5; }
.about-badge .material-symbols-rounded { color:var(--accent); font-size:1rem; }
.about-badge-top { top:-14px; left:50%; transform:translateX(-50%); }
.about-badge-middle { bottom:30%; right:-20px; }
.about-badge-bottom { bottom:10%; left:-16px; }
.about-title { font-family:var(--font-display); font-size:clamp(1.8rem, 3.2vw, 2.4rem); font-weight:800; letter-spacing:-0.03em; line-height:1.1; margin-bottom:1rem; }
.about-accent { color:var(--accent); }
.about-text { font-size:0.9rem; color:var(--text-soft); line-height:1.65; margin-bottom:0.65rem; }
.about-text strong { color:var(--text); font-weight:600; }
.about-quote { display:flex; gap:0.6rem; background:#fff; border-radius:14px; padding:0.9rem 1.1rem; border:1px solid var(--border-soft); box-shadow:var(--shadow-sm); margin-top:0.75rem; align-items:flex-start; }
.about-quote-icon { color:var(--accent); font-size:1.5rem!important; flex-shrink:0; margin-top:2px; }
.about-quote p { font-size:0.82rem; color:var(--text-soft); line-height:1.5; margin:0; }
.about-quote p strong { color:var(--text); }

/* ==================== SERVICES ==================== */
.services { padding:5rem 0; background:#fff; }
.services-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1rem; }
.service-card { background:#fff; border:1px solid var(--border-soft); border-radius:18px; padding:1.4rem; transition:all 0.3s ease; display:flex; flex-direction:column; cursor:pointer; }
.service-card:hover { border-color:#bfdbfe; box-shadow:0 16px 40px rgba(0,0,0,0.06); transform:translateY(-2px); }
.service-icon-wrap { width:42px; height:42px; border-radius:12px; background:var(--accent-soft); display:grid; place-items:center; color:var(--accent); font-size:1.15rem; margin-bottom:0.85rem; }
.service-card h3 { font-size:0.95rem; font-weight:700; color:var(--text); margin-bottom:0.4rem; letter-spacing:-0.01em; }
.service-card > p { font-size:0.8rem; color:var(--text-soft); line-height:1.5; margin-bottom:0.85rem; flex-grow:1; }
.service-list { display:flex; flex-direction:column; gap:0.35rem; padding-top:0.85rem; border-top:1px solid var(--border-soft); }
.service-list li { font-size:0.74rem; color:var(--text-soft); display:flex; align-items:center; gap:0.3rem; }
.service-list .material-symbols-rounded { color:#22c55e; font-size:0.8rem; flex-shrink:0; }
.services-cta { text-align:center; margin-top:2.5rem; display:flex; flex-direction:column; align-items:center; gap:0.65rem; }
.services-cta p { font-size:0.85rem; color:var(--text-soft); }

/* ==================== PROCESS ==================== */
.process { padding:5rem 0; background:var(--bg-warm); }
.process-grid { display:grid; grid-template-columns:repeat(5, 1fr); gap:1rem; }
.process-card { text-align:center; background:#fff; border:1px solid var(--border); border-radius:16px; padding:1.5rem 1rem; transition:all 0.3s ease; position:relative; }
.process-card:hover { border-color:#bfdbfe; box-shadow:var(--shadow-md); transform:translateY(-3px); }
.process-card-num { font-family:var(--font-display); font-size:2rem; font-weight:800; color:var(--accent); line-height:1; margin-bottom:0.5rem; }
.process-card h3 { font-size:0.9rem; font-weight:700; color:var(--text); margin-bottom:0.4rem; }
.process-card p { font-size:0.76rem; color:var(--text-soft); line-height:1.45; }

/* ==================== COMPARISON ==================== */
.comparison { padding:5rem 0; background:#fff; }
.comparison-tabs { display:flex; gap:0.4rem; justify-content:center; flex-wrap:wrap; margin-bottom:2rem; }
.comp-tab { padding:0.5rem 1.1rem; border-radius:100px; font-size:0.78rem; font-weight:600; color:var(--text-soft); background:#fff; border:1px solid var(--border); cursor:pointer; transition:all 0.2s; }
.comp-tab.active { background:var(--accent); color:#fff; border-color:var(--accent); }
.comp-tab:hover:not(.active) { border-color:#cbd5e1; }
.comparison-panel { animation:fadeIn 0.3s ease; }
.compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.comp-col { padding:1.5rem; border-radius:16px; border:1px solid var(--border); }
.comp-bad { background:#fef2f2; border-color:#fecaca; }
.comp-good { background:#f0fdf4; border-color:#bbf7d0; }
.comp-col h3 { display:flex; align-items:center; gap:0.4rem; font-size:0.9rem; font-weight:700; margin-bottom:0.85rem; }
.comp-col ul { display:flex; flex-direction:column; gap:0.4rem; }
.comp-col li { font-size:0.8rem; color:var(--text-soft); padding-left:1.2rem; position:relative; line-height:1.45; }
.comp-col li::before { content:'–'; position:absolute; left:0; top:0; color:inherit; }
@keyframes fadeIn { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }

/* ==================== ELEMENTOR ==================== */
.elementor { padding:5rem 0; background:var(--bg); position:relative; overflow:hidden; }
.elementor-gradient { position:absolute; inset:0; background:linear-gradient(180deg, #eff6ff 0%, #fafaf9 50%, #eff6ff 100%); pointer-events:none; z-index:0; }
.elementor .container { position:relative; z-index:1; }
.elementor-text { font-size:0.9rem; color:var(--text-soft); line-height:1.6; text-align:center; max-width:700px; margin:0 auto; }

/* ==================== PORTFOLIO ==================== */
.portfolio { padding:5rem 0; background:#fff; }
.portfolio-notice { display:flex; gap:0.5rem; background:#f8fafc; border:1px solid var(--border); border-radius:14px; padding:0.75rem 1rem; margin-bottom:1.5rem; font-size:0.76rem; color:var(--text-soft); align-items:center; max-width:700px; margin-left:auto; margin-right:auto; }
.portfolio-notice .material-symbols-rounded { color:var(--accent); flex-shrink:0; }
.portfolio-filters-wrap { display:flex; align-items:center; gap:0.25rem; justify-content:center; margin-bottom:1.75rem; }
.portfolio-filters { display:flex; gap:0.4rem; overflow-x:auto; scroll-behavior:smooth; padding:0.25rem 0; -ms-overflow-style:none; scrollbar-width:none; }
.portfolio-filters::-webkit-scrollbar { display:none; }
.filter-btn { padding:0.45rem 1rem; border-radius:100px; font-size:0.76rem; font-weight:600; color:var(--text-soft); background:#fff; border:1px solid var(--border); cursor:pointer; display:flex; align-items:center; gap:0.3rem; transition:all 0.2s; white-space:nowrap; flex-shrink:0; }
.filter-btn.active { background:var(--accent); color:#fff; border-color:var(--accent); }
.filter-btn:hover:not(.active) { border-color:#cbd5e1; }
.filter-count { font-size:0.64rem; opacity:0.65; }
.filter-scroll-btn { width:32px; height:32px; border-radius:50%; border:1px solid var(--border); background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; transition:all 0.2s; color:var(--text-soft); }
.filter-scroll-btn:hover { border-color:var(--accent); color:var(--accent); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1rem; }
.portfolio-item { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:all 0.3s ease; cursor:pointer; display:block; }
.portfolio-item.hidden { display:none; }
.portfolio-item:hover { border-color:#bfdbfe; box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.portfolio-thumb { aspect-ratio:16/10; background:var(--bg-soft); position:relative; overflow:hidden; }
.portfolio-thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.45s ease; }
.portfolio-item:hover .portfolio-thumb img { transform:scale(1.04); }
.portfolio-thumb .material-symbols-rounded { position:absolute; bottom:0.5rem; right:0.5rem; width:30px; height:30px; border-radius:8px; background:rgba(255,255,255,0.9); display:grid; place-items:center; color:var(--accent); font-size:0.9rem; }
.portfolio-info { padding:0.85rem 1rem; }
.portfolio-cat { font-size:0.64rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--accent); font-weight:600; display:block; margin-bottom:0.1rem; }
.portfolio-info h3 { font-size:0.88rem; font-weight:700; color:var(--text); margin-bottom:0.15rem; }
.portfolio-info p { font-size:0.74rem; color:var(--text-soft); line-height:1.35; margin-bottom:0.4rem; }
.portfolio-metrics { display:flex; gap:0.75rem; font-size:0.66rem; color:var(--text-muted); }
.portfolio-metrics strong { color:#22c55e; font-weight:700; }
.portfolio-note { text-align:center; margin-top:1.75rem; font-size:0.78rem; color:var(--text-muted); display:flex; align-items:center; gap:0.4rem; justify-content:center; }

/* ==================== TESTIMONIALS ==================== */
.testimonials { padding:5rem 0; background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:1rem; }
.testimonial-card { background:linear-gradient(135deg, #fff 0%, #fafdfe 100%); border:1px solid var(--border); border-radius:16px; padding:1.4rem; transition:all 0.2s; position:relative; overflow:hidden; }
.testimonial-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--accent), #60a5fa); opacity:0; transition:opacity 0.3s; }
.testimonial-card:hover::before { opacity:1; }
.testimonial-card:hover { box-shadow:var(--shadow-md); }
.testimonial-stars { color:#f59e0b; font-size:0.8rem; margin-bottom:0.5rem; letter-spacing:0.03em; }
.testimonial-text { font-size:0.84rem; color:var(--text-soft); line-height:1.6; margin-bottom:0.65rem; display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; }
.testimonial-text.expanded { -webkit-line-clamp:unset; display:block; }
.testimonial-readmore { font-size:0.72rem; color:var(--accent); font-weight:600; cursor:pointer; display:inline-flex; align-items:center; gap:0.15rem; margin-bottom:0.75rem; background:none; border:none; padding:0; }
.testimonial-card footer strong { display:block; font-size:0.78rem; color:var(--text); }
.testimonial-card footer span { font-size:0.68rem; color:var(--text-muted); }
.hidden-testimonial { display:none; }
.testimonials-loadmore { text-align:center; margin-top:1.5rem; }

/* ==================== BLOG ==================== */
.blog { padding:5rem 0; background:var(--bg-warm); }
.blog-slider-wrap { display:flex; align-items:stretch; gap:0.5rem; }
.blog-track { display:flex; gap:1rem; overflow-x:auto; scroll-behavior:smooth; padding:0.25rem 0; -ms-overflow-style:none; scrollbar-width:none; flex:1; }
.blog-track::-webkit-scrollbar { display:none; }
.blog-card { flex-shrink:0; width:340px; background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:all 0.3s ease; display:block; }
.blog-card:hover { border-color:#bfdbfe; box-shadow:var(--shadow-lg); transform:translateY(-2px); }
.blog-thumb { aspect-ratio:16/9; background:var(--bg-soft); overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.45s ease; }
.blog-card:hover .blog-thumb img { transform:scale(1.03); }
.blog-body { padding:1rem 1.1rem; }
.blog-cat { font-size:0.64rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--accent); font-weight:600; margin-bottom:0.3rem; display:block; }
.blog-body h3 { font-size:0.9rem; font-weight:700; color:var(--text); line-height:1.3; margin-bottom:0.35rem; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.blog-body p { font-size:0.78rem; color:var(--text-soft); line-height:1.45; margin-bottom:0.5rem; }
.blog-read { font-size:0.74rem; color:var(--accent); font-weight:600; display:flex; align-items:center; gap:0.2rem; }

/* ==================== PRICING ==================== */
.pricing { padding:5rem 0; background:var(--bg); }
.pricing-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1rem; }
.pricing-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:1.6rem; text-align:center; transition:all 0.3s ease; position:relative; }
.pricing-card:hover { box-shadow:var(--shadow-md); }
.pricing-featured { background:linear-gradient(135deg, #fff 0%, #eff6ff 100%); border-color:var(--accent-light); box-shadow:var(--shadow-md), 0 0 0 5px var(--accent-soft); }
.pricing-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg, var(--accent), #3b82f6); color:#fff; padding:0.3rem 1.2rem; border-radius:100px; font-size:0.68rem; font-weight:700; letter-spacing:0.02em; box-shadow:0 4px 16px rgba(37,99,235,0.25); }
.pricing-header { margin-bottom:1rem; }
.pricing-header h3 { font-size:1rem; font-weight:700; color:var(--text); margin-bottom:0.35rem; }
.pricing-price { font-family:var(--font-display); font-size:1.9rem; font-weight:800; color:var(--accent); }
.pricing-price span { font-size:0.75rem; color:var(--text-muted); font-weight:500; }
.pricing-desc { font-size:0.76rem; color:var(--text-soft); line-height:1.45; }
.pricing-features { display:flex; flex-direction:column; gap:0.4rem; margin:1rem 0 1.25rem; text-align:left; }
.pricing-features li { font-size:0.76rem; color:var(--text-soft); display:flex; align-items:center; gap:0.3rem; }
.pricing-features .material-symbols-rounded { color:#22c55e; font-size:0.8rem; }
.btn-details { background:transparent; border:1.5px solid var(--border); color:var(--text); font-weight:600; cursor:pointer; width:100%; }
.btn-details:hover { border-color:var(--accent); color:var(--accent); }

/* ==================== MODAL ==================== */
.modal { position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; visibility:hidden; transition:all 0.3s ease; }
.modal.active { opacity:1; visibility:visible; }
.modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.6); backdrop-filter:blur(4px); }
.modal-dialog { position:relative; background:#fff; border-radius:20px; padding:2rem; max-width:560px; width:100%; max-height:85vh; overflow-y:auto; box-shadow:var(--shadow-xl); z-index:1; text-align:center; }
.modal-close { position:absolute; top:1rem; right:1rem; width:36px; height:36px; border-radius:50%; background:var(--bg); display:grid; place-items:center; color:var(--text); transition:all 0.2s; z-index:2; }
.modal-close:hover { background:#e5e5e5; }
.modal-image { width:100%; aspect-ratio:16/9; border-radius:12px; overflow:hidden; background:var(--bg-soft); margin-bottom:1.25rem; }
.modal-image img { width:100%; height:100%; object-fit:cover; }
.modal-icon-wrap { width:48px; height:48px; border-radius:14px; background:var(--accent-soft); display:grid; place-items:center; margin:0 auto 0.75rem; color:var(--accent); font-size:1.3rem; }
.modal-title { font-family:var(--font-display); font-size:1.5rem; font-weight:800; letter-spacing:-0.02em; margin-bottom:0.5rem; color:var(--text); }
.modal-price { font-family:var(--font-display); font-size:2.2rem; font-weight:800; color:var(--accent); margin-bottom:0.75rem; }
.modal-desc { font-size:0.88rem; color:var(--text-soft); line-height:1.6; margin-bottom:1.25rem; }
.modal-list { display:flex; flex-direction:column; gap:0.5rem; text-align:left; margin-bottom:1.5rem; }
.modal-list li { font-size:0.84rem; color:var(--text-soft); display:flex; align-items:center; gap:0.4rem; }
.modal-list .material-symbols-rounded { color:#22c55e; font-size:0.9rem; flex-shrink:0; }

/* ==================== FAQ ==================== */
.faq { padding:5rem 0; background:var(--bg-warm); }
.faq-grid { max-width:700px; margin:0 auto; display:flex; flex-direction:column; gap:0.5rem; }
.faq-item { background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.faq-question { width:100%; text-align:left; padding:0.95rem 1.15rem; font-size:0.86rem; font-weight:600; color:var(--text); display:flex; justify-content:space-between; align-items:center; gap:0.75rem; cursor:pointer; transition:all 0.2s; }
.faq-question:hover { background:var(--bg); }
.faq-question .material-symbols-rounded { transition:transform 0.35s ease; font-size:1.1rem; color:var(--text-muted); flex-shrink:0; }
.faq-question[aria-expanded="true"] .material-symbols-rounded { transform:rotate(45deg); color:var(--accent); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.4s ease; }
.faq-answer.open { max-height:500px; }
.faq-answer p { padding:0 1.15rem 0.95rem; font-size:0.82rem; color:var(--text-soft); line-height:1.6; }

/* ==================== CONTACT ==================== */
.contact { padding:5rem 0; background:var(--bg); position:relative; overflow:hidden; }
.contact-gradient { position:absolute; inset:0; background:linear-gradient(180deg, #eff6ff 0%, #fafaf9 40%, #eff6ff 100%); pointer-events:none; z-index:0; }
.contact .container { position:relative; z-index:1; }
.contact-benefits { display:flex; gap:1.25rem; justify-content:center; flex-wrap:wrap; margin-bottom:2rem; }
.benefit-item { display:flex; align-items:flex-start; gap:0.5rem; max-width:200px; }
.benefit-item .material-symbols-rounded { color:var(--accent); font-size:1.15rem; margin-top:1px; }
.benefit-item strong { display:block; font-size:0.8rem; color:var(--text); margin-bottom:0.02rem; }
.benefit-item p { font-size:0.7rem; color:var(--text-muted); line-height:1.3; }
.contact-form { max-width:600px; margin:0 auto; background:#fff; border:1px solid var(--border); border-radius:18px; padding:1.75rem; box-shadow:var(--shadow-md); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.form-group { margin-bottom:0.9rem; }
.form-group label { display:block; font-size:0.76rem; font-weight:600; color:var(--text); margin-bottom:0.25rem; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:0.6rem 0.8rem; border:1px solid var(--border); border-radius:10px; font-family:inherit; font-size:0.85rem; color:var(--text); background:var(--bg); transition:all 0.2s; resize:vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); background:#fff; }

/* ==================== FOOTER ==================== */
.footer { background:#0f172a; color:#cbd5e1; padding:3.5rem 0 1.25rem; }
.footer .logo-name { color:#fff; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2rem; }
.footer-brand p { font-size:0.78rem; line-height:1.55; color:#94a3b8; }
.footer-links { display:flex; flex-direction:column; gap:0.45rem; }
.footer-links h4 { color:#fff; font-size:0.8rem; font-weight:600; margin-bottom:0.25rem; }
.footer-links a, .footer-links span { font-size:0.74rem; color:#94a3b8; transition:color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom { border-top:1px solid #1e293b; padding-top:1.25rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:0.6rem; font-size:0.7rem; color:#64748b; }

/* ==================== BACK TO TOP ==================== */
.back-to-top { position:fixed; bottom:1.5rem; right:1.5rem; width:42px; height:42px; border-radius:50%; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-md); display:grid; place-items:center; color:var(--text); z-index:50; opacity:0; visibility:hidden; transform:translateY(10px); transition:all 0.3s ease; cursor:pointer; }
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { background:var(--accent); color:#fff; border-color:var(--accent); }

/* ==================== RESPONSIVE ==================== */
@media (max-width:1024px) {
    .nav-links, .header-btn { display:none; }
    .menu-toggle { display:grid; }
    .services-grid { grid-template-columns:repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns:repeat(2, 1fr); }
    .pricing-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
    .process-grid { grid-template-columns:repeat(3, 1fr); }
}
@media (max-width:768px) {
    .container { width:calc(100% - 30px); }
    .header { top:0.5rem; padding:0.5rem 1rem; width:calc(100% - 30px); }
    .hero { padding:7rem 1rem 3rem; }
    .hero-title { font-size:clamp(2.2rem, 8vw, 3.2rem); }
    .hero-sub { font-size:0.9rem; max-width:100%; }
    .hero-rotating-text { min-width:auto; }
    .site-card { width:170px; }
    .about-grid { grid-template-columns:1fr; gap:2rem; }
    .about-left { justify-content:center; max-width:340px; margin:0 auto; }
    .about-image-wrap { max-width:340px; }
    .services-grid { grid-template-columns:1fr; }
    .portfolio-grid { grid-template-columns:1fr; }
    .testimonials-grid { grid-template-columns:1fr; }
    .compare-grid { grid-template-columns:1fr; }
    .process-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .contact-benefits { flex-direction:column; align-items:center; }
    .form-row { grid-template-columns:1fr; }
    .modal-dialog { padding:1.5rem; }
    .refokus-lines { width:95vw; }
    .r-line:nth-child(1) { margin-left:-15%; }
    .r-line:nth-child(3) { margin-left:15%; }
    .blog-card { width:280px; }
}
@media (max-width:480px) {
    .hero-title { font-size:clamp(1.8rem, 8vw, 2.4rem); }
    .hero-btns { flex-direction:column; width:100%; }
    .hero-btns .btn { width:100%; }
    .section-heading { font-size:1.6rem; }
    .footer-grid { grid-template-columns:1fr; }
    .about-badge-middle { right:-8px; }
    .about-badge-bottom { left:-6px; }
    .blog-card { width:260px; }
}
/* ==================== WORDPRESS + REVENUE THEME ADDITIONS ==================== */
:root{--bg-soft:#f8fafc;--accent-light:#60a5fa;--container:1200px}.skip-link{position:fixed;top:-100px;left:1rem;z-index:9999;background:var(--accent);color:#fff;padding:.75rem 1rem;border-radius:10px;font-weight:700}.skip-link:focus{top:1rem}body.admin-bar .header{top:calc(1.5rem + 32px)}body.admin-bar .header.scrolled{top:32px}@media(max-width:782px){body.admin-bar .header{top:calc(.5rem + 46px)}body.admin-bar .header.scrolled{top:46px}}
.logo-name-wrap{position:relative;display:inline-flex;flex-direction:column;line-height:1}.logo-name{font-weight:800}.logo-tagline{position:absolute;left:0;top:calc(100% + 12px);white-space:nowrap;background:#fff;color:var(--text-soft);border:1px solid var(--border);box-shadow:var(--shadow-md);border-radius:999px;padding:.32rem .7rem;font-size:.68rem;font-weight:700;opacity:0;visibility:hidden;transform:translateY(-5px);transition:all .2s ease}.logo:hover .logo-tagline,.logo:focus-visible .logo-tagline{opacity:1;visibility:visible;transform:translateY(0)}.logo-mark.has-image{background:transparent;border:1px solid var(--border);overflow:hidden}.logo-mark-img{width:100%;height:100%;object-fit:contain;border-radius:inherit}.footer .logo-mark.has-image{background:#fff}.footer .logo-accent,.footer .logo-name{color:#fff}.footer .logo-tagline{display:none}.material-symbols-rounded{font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24}.comparison-panel{display:none}.comparison-panel.active{display:block}.comp-good h3 .material-symbols-rounded{color:#22c55e}.comp-bad h3 .material-symbols-rounded{color:#ef4444}.pricing-start{margin-top:.5rem}.site-card .site-card-icon{display:grid;place-items:center;width:100%;height:100%;font-size:3rem;color:var(--accent);background:#e8f1ff}.blog-placeholder{display:grid!important;place-items:center;width:100%;height:100%;font-size:3rem;color:var(--accent);background:#eff6ff}.about-copy p{font-size:.9rem;color:var(--text-soft);line-height:1.65;margin-bottom:.65rem}.about-copy strong{color:var(--text);font-weight:700}.about-copy .about-text{margin-bottom:.65rem}.contact-form-shell{max-width:760px;margin:0 auto;background:#fff;border:1px solid var(--border);border-radius:18px;padding:1.25rem;box-shadow:var(--shadow-md)}.dm-lazy-loading,.dm-lazy-shortcode-error{font-size:.86rem;color:var(--text-soft);text-align:center;padding:1rem}.security-checker-section{padding:5rem 0;background:#fff}.footer-security-check-btn{margin-top:1rem;display:inline-flex;align-items:center;gap:.45rem;border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:.55rem .85rem;color:#dbeafe;background:rgba(255,255,255,.04);font-size:.75rem;font-weight:700}.footer-security-check-btn:hover{background:rgba(255,255,255,.1);color:#fff}.dm-security-drawer{position:fixed;inset:0;z-index:260;pointer-events:none}.dm-security-drawer.active{pointer-events:auto}.dm-security-drawer:before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.55);opacity:0;transition:opacity .3s ease}.dm-security-drawer.active:before{opacity:1}.dm-security-drawer-panel{position:absolute;top:0;right:0;width:460px;max-width:92vw;height:100svh;background:#fff;padding:2rem;overflow-y:auto;transform:translateX(100%);transition:transform .35s cubic-bezier(.22,1,.36,1);box-shadow:-24px 0 70px rgba(0,0,0,.16)}.dm-security-drawer.active .dm-security-drawer-panel{transform:translateX(0)}.dm-security-drawer-close{position:absolute;top:1rem;right:1rem;width:40px;height:40px;border-radius:50%;display:grid;place-items:center;background:var(--bg);}.dm-security-drawer h2{font-family:var(--font-display);font-size:1.6rem;line-height:1.1;margin:.5rem 0 .75rem}.dm-security-drawer p{color:var(--text-soft);font-size:.88rem;line-height:1.55}.dm-security-drawer-cta{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border)}.archive-hero,.single-hero,.page-hero,.search-hero,.error-hero{padding:8rem 0 3rem;background:var(--bg);text-align:center}.archive-hero h1,.single-hero h1,.page-hero h1,.search-hero h1,.error-hero h1{font-family:var(--font-display);font-size:clamp(2rem,5vw,3.75rem);line-height:1;letter-spacing:-.04em}.archive-hero p,.single-hero p,.page-hero p,.search-hero p,.error-hero p{max-width:680px;margin:.9rem auto 0;color:var(--text-soft)}.content-section{padding:3rem 0 5rem;background:#fff}.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:2rem;align-items:start}.post-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.entry-card{display:block;background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:all .25s}.entry-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:#bfdbfe}.entry-card-media{aspect-ratio:16/9;background:var(--bg-soft);display:grid;place-items:center;color:var(--accent)}.entry-card-media img{width:100%;height:100%;object-fit:cover}.entry-card-body{padding:1rem}.entry-card-body h2,.entry-card-body h3{font-size:1rem;line-height:1.25;margin-bottom:.4rem}.entry-meta{font-size:.72rem;color:var(--text-muted);margin-bottom:.35rem}.entry-card-body p{font-size:.82rem;color:var(--text-soft);line-height:1.5}.single-content,.page-content{max-width:780px;margin:0 auto;font-size:1rem;color:var(--text-soft);line-height:1.75}.single-content h2,.single-content h3,.page-content h2,.page-content h3{font-family:var(--font-display);color:var(--text);letter-spacing:-.02em;margin:1.6em 0 .5em;line-height:1.15}.single-content p,.page-content p{margin-bottom:1rem}.single-content a,.page-content a{color:var(--accent);font-weight:700}.single-featured{max-width:960px;margin:0 auto 2rem;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg)}.dm-breadcrumbs{font-size:.75rem;color:var(--text-muted);margin-bottom:1rem}.dm-breadcrumbs ol{display:flex;gap:.35rem;justify-content:center;flex-wrap:wrap;list-style:none}.dm-breadcrumbs li:not(:last-child):after{content:'/';margin-left:.35rem;color:var(--text-muted)}.blog-sidebar{background:var(--bg);border:1px solid var(--border);border-radius:16px;padding:1.25rem;position:sticky;top:7rem}.blog-sidebar h3{font-family:var(--font-display);font-size:1.2rem;margin-bottom:.5rem}.blog-sidebar p,.blog-sidebar a{font-size:.82rem;color:var(--text-soft)}.pagination{margin-top:2rem;display:flex;justify-content:center}.nav-links .page-numbers,.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;border:1px solid var(--border);border-radius:999px;margin:0 .15rem;padding:0 .75rem;font-size:.8rem}.nav-links .current,.pagination .current{background:var(--accent);border-color:var(--accent);color:#fff}.search-form{display:flex;gap:.5rem;max-width:560px;margin:1.5rem auto 0}.search-form label{flex:1}.search-field{width:100%;padding:.8rem 1rem;border:1px solid var(--border);border-radius:999px;background:#fff}.search-submit{padding:.8rem 1.2rem;border-radius:999px;background:var(--accent);color:#fff;font-weight:700}.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}@media(max-width:1024px){.content-grid{grid-template-columns:1fr}.blog-sidebar{position:static}.post-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:768px){.logo-tagline{display:none}.contact-form-shell{padding:.9rem}.post-grid{grid-template-columns:1fr}.archive-hero,.single-hero,.page-hero,.search-hero,.error-hero{padding:6.5rem 0 2.25rem}.search-form{flex-direction:column}.search-submit{width:100%}}

/* ==================== v2.1 refinements ==================== */
.text-gradient,
.section-heading .accent,
.about-accent { color: var(--accent); }

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#main-content { flex: 1 0 auto; }
.section-sub { white-space: pre-line; }

.home .header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem max(1rem, calc((100vw - 1200px) / 2 + 1rem));
    background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,.68));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.home .header.scrolled {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(15,23,42,0.04);
}
body.admin-bar.home .header { top: 32px; }
@media (max-width: 782px) {
    body.admin-bar.home .header { top: 46px; }
}
.hero {
    padding-top: 10rem;
    background: #fff;
}
.sites-showcase,
.about,
.services,
.contact,
.archive-hero,
.single-hero,
.page-hero,
.search-hero,
.error-hero { background: #fff; }

.logo { gap: 0.55rem; }
.logo-mark,
.logo-mark.has-image {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.logo-mark-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}
.logo-name-wrap { gap: 0.1rem; }
.logo-tagline {
    top: calc(100% + 10px);
    border-radius: 999px;
    border-color: rgba(37,99,235,0.12);
}
.footer .logo-mark,
.footer .logo-mark.has-image { background: transparent; }

.offcanvas-body .modal-image {
    position: relative;
    overflow: hidden;
}
.offcanvas-body .modal-image .modal-icon-wrap,
.offcanvas-body .modal-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 30px rgba(15,23,42,0.16);
    color: var(--accent);
}
.offcanvas-body .modal-image .modal-icon-wrap {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    margin: 0;
}
.offcanvas-body > .modal-icon-wrap {
    position: relative;
    margin: -0.35rem 0 0.8rem;
}
.offcanvas-body.has-image > .modal-icon-wrap { display: none; }

.services .section-sub,
.elementor .section-sub { max-width: 720px; }
.process { background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%); }
.process-grid { gap: 1.1rem; }
.process-card {
    overflow: hidden;
    text-align: left;
    min-height: 220px;
    padding: 1.4rem 1.2rem;
}
.process-card h3,
.process-card p { position: relative; z-index: 1; }
.process-card-num {
    position: absolute;
    right: 0.85rem;
    bottom: 0.55rem;
    margin: 0;
    font-size: clamp(4rem, 6vw, 5.5rem);
    line-height: .8;
    color: rgba(37,99,235,0.09);
    transform: rotate(-18deg);
    z-index: 0;
    pointer-events: none;
    transition: color .25s ease, transform .25s ease;
}
.process-card:hover .process-card-num {
    color: rgba(37,99,235,0.18);
    transform: rotate(-18deg) scale(1.03);
}

.comparison { background: #fff; }
.compare-grid { gap: 1rem; }
.comp-col ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.comp-col li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.55;
}
.comp-col li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em;
    transform: translateY(-50%);
}
.comp-bad li::before { background: #ef4444; box-shadow: 0 0 0 5px rgba(239,68,68,.08); }
.comp-good li::before { background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.08); }

.sites-marquee-wrap {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}
.sites-marquee-wrap.dragging { cursor: grabbing; }
.sites-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    animation: none !important;
    will-change: transform;
    transform: translate3d(0,0,0);
}
.sites-track-reverse { margin-top: 0.9rem; }
.site-card {
    width: clamp(210px, 19vw, 280px);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15,23,42,.08);
    border: 1px solid rgba(15,23,42,.06);
}
.site-card-overlay {
    padding: 0.7rem 0.8rem;
    font-size: 0.7rem;
}

.elementor {
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
    padding: 5.5rem 0;
    overflow: hidden;
}
.elementor .container { position: relative; z-index: 1; }
.elementor-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}
.elementor-copy .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}
.elementor-copy .section-sub { margin: 0; }
.elementor-text {
    max-width: 560px;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
}
.elementor-text p + p { margin-top: 1rem; }
.elementor-cta {
    margin-top: 1.25rem;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(37,99,235,.08);
}
.elementor-cta p { color: var(--text-soft); font-size: 0.92rem; }
.elementor-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}
.elementor-marquee-row { width: 100%; }
.elementor-showcase .site-card { width: clamp(230px, 22vw, 300px); }
.elementor-showcase::before,
.elementor-showcase::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 32px;
    z-index: 2;
    pointer-events: none;
}
.elementor-showcase::before { top: 0; background: linear-gradient(to bottom, rgba(238,244,255,1), rgba(238,244,255,0)); }
.elementor-showcase::after { bottom: 0; background: linear-gradient(to top, rgba(248,251,255,1), rgba(248,251,255,0)); }

.blog { background: #fff; }
.blog-slider-wrap { display: block; }
.blog-slider-wrap > .filter-scroll-btn { display: none !important; }
.blog-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    overflow: visible;
}
.blog-card { width: auto; min-width: 0; }

.contact { padding: 5.25rem 0 0; }
.contact .section-header { margin-bottom: 2rem; }
.contact-form-shell {
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.contact .dm-lazy-shortcode,
.contact noscript { display: block; }

.footer {
    margin-top: 0;
    padding: 4rem 0 1.5rem;
    background: linear-gradient(90deg, #091126 0%, #0a1430 50%, #091126 100%);
}
.footer-grid { gap: 2rem; }
.footer-brand p {
    max-width: 420px;
    color: #9fb2d4;
}
.footer-links h4 { color: #fff; margin-bottom: 1rem; }
.footer-links a,
.footer-links span { color: #9fb2d4; }
.footer-bottom {
    margin-top: 2rem;
    border-top-color: rgba(159,178,212,.18);
}
.back-to-top {
    right: 1rem;
    bottom: 1rem;
}

@media (max-width: 1024px) {
    .elementor-split { grid-template-columns: 1fr; }
    .elementor-copy .section-header { text-align: center; }
    .elementor-copy .section-sub,
    .elementor-text,
    .elementor-cta { max-width: none; }
    .elementor-copy .section-sub { margin: 0 auto; }
    .elementor-text { text-align: center; }
    .blog-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .home .header {
        padding: 0.75rem 15px;
    }
    .hero { padding-top: 8rem; }
    .sites-marquee-wrap { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
    .site-card,
    .elementor-showcase .site-card { width: 225px; }
    .process-card { min-height: 180px; }
    .blog-track {
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scroll-snap-type: x proximity;
    }
    .blog-card {
        width: 82vw;
        max-width: 340px;
        scroll-snap-align: start;
    }
    .footer-grid { grid-template-columns: 1fr; }
}

.contact-benefits { display: none; }


/* ==================== v2.2 refinements ==================== */
html, body { min-height: 100%; }
body { background: #091126; }
#main-content { background: #fff; flex: 1 0 auto; }
.footer { flex-shrink: 0; }

.hero { padding-bottom: 3.2rem; }
.hero-sites-showcase { width: min(100vw, 1440px); margin: 1.75rem auto 0; padding: 3.25rem 0 0; background: transparent; }
.hero-sites-showcase .sites-label { color: #7b8799; letter-spacing: .14em; margin-bottom: 1rem; }
.hero-sites-showcase .site-card { width: clamp(205px, 18vw, 265px); }

.faq { position: relative; overflow: hidden; background: radial-gradient(circle at 20% 0%, rgba(37,99,235,.18), transparent 36%), radial-gradient(circle at 82% 10%, rgba(96,165,250,.18), transparent 34%), linear-gradient(135deg,#eff6ff 0%,#fff 48%,#eaf2ff 100%); }
.faq::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(37,99,235,.07), transparent 28%, rgba(37,99,235,.07)); pointer-events:none; }
.faq .container { position: relative; z-index: 1; }
.faq .section-header { padding: 1.25rem 0; }
.faq-item { border-color: rgba(37,99,235,.12); box-shadow: 0 16px 50px rgba(37,99,235,.06); }
.faq-question { font-size: .94rem; }
.faq-answer p { font-size: .9rem; }

.elementor-monitor-layout { grid-template-columns: minmax(0,.95fr) minmax(440px,1.05fr); gap: 3rem; }
.elementor-copy .section-header { text-align: left; }
.elementor-copy .section-sub { margin: 0; max-width: 620px; }
.elementor-text, .elementor-text p { text-align: left; }
.elementor-text { max-width: 620px; font-size: 1.02rem; line-height: 1.8; }
.elementor-cta { max-width: 620px; flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; }
.elementor-cta p { margin: 0; max-width: 330px; font-size: .96rem; }
.elementor-cta .btn { flex-shrink: 0; }
.elementor-monitor { position: relative; max-width: 620px; margin-left: auto; }
.elementor-monitor-frame { position: relative; padding: 18px; border-radius: 32px; background: linear-gradient(145deg,#0f172a,#1e293b); box-shadow: 0 30px 90px rgba(15,23,42,.22); }
.elementor-monitor-screen { position: relative; aspect-ratio: 16/10; border-radius: 22px; overflow: hidden; background: #071224; }
.elementor-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .35s ease, transform .35s ease, visibility .35s; }
.elementor-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.elementor-slide img { width: 100%; height: 100%; object-fit: cover; }
.elementor-slide-icon { display:grid; place-items:center; width:100%; height:100%; font-size:4rem; color:#60a5fa; background:#0f172a; }
.elementor-slide-label { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: #fff; background: rgba(15,23,42,.72); border:1px solid rgba(255,255,255,.16); padding: .45rem .7rem; border-radius:999px; font-size:.78rem; font-weight:800; backdrop-filter: blur(8px); }
.elementor-slider-btn { position:absolute; top:50%; z-index:4; width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:#fff; border:1px solid rgba(15,23,42,.08); box-shadow:0 14px 34px rgba(15,23,42,.18); transform:translateY(-50%); color:var(--accent); }
.elementor-slider-prev { left:-18px; }
.elementor-slider-next { right:-18px; }
.elementor-monitor-stand { width:34%; height:18px; margin:0 auto; background:linear-gradient(180deg,#1e293b,#0f172a); border-radius:0 0 16px 16px; }
.elementor-slider-dots { display:flex; justify-content:center; gap:.45rem; margin-top:.85rem; }
.elementor-dot { width:9px; height:9px; border-radius:50%; background:rgba(37,99,235,.22); transition:all .2s ease; }
.elementor-dot.active { width:24px; border-radius:999px; background:var(--accent); }

.contact { padding: 5.25rem 0 5.25rem !important; }
.footer { margin-top: 0; padding-bottom: 2rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; }
.footer-links a, .footer-links span { font-size: .84rem; line-height: 1.7; }
.footer-bottom { font-size: .78rem; }
.section-sub { font-size: 1rem; }
.service-card > p, .process-card p, .portfolio-info p, .pricing-desc, .blog-body p, .testimonial-text { font-size: .86rem; }

@media (max-width: 1024px) {
  .elementor-monitor-layout { grid-template-columns: 1fr; }
  .elementor-monitor { margin: 1.25rem auto 0; }
  .elementor-cta { max-width:none; }
}
@media (max-width: 768px) {
  .hero-sites-showcase { padding-top: 2rem; }
  .elementor-cta { flex-direction:column; align-items:stretch; }
  .elementor-slider-prev { left:.5rem; }
  .elementor-slider-next { right:.5rem; }
  .elementor-monitor-frame { padding:12px; border-radius:24px; }
  .elementor-monitor-screen { border-radius:16px; }
}


/* ==================== v2.3 hard fixes ==================== */
/* WordPress adds .blog to <body>; keep section styling from leaking into the page wrapper/footer. */
body.blog,
body.home.blog {
    padding: 0 !important;
    margin: 0 !important;
    background: #091126 !important;
}
body.blog #main-content,
body.home.blog #main-content {
    background: #fff !important;
}
body.blog section.blog,
section.blog {
    padding: 5rem 0 !important;
    background: #fff !important;
}
.footer {
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}
.footer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    height: 80px;
    background: inherit;
    pointer-events: none;
}

/* Hero website marquee: automatic again, inside the hero visual block. */
.hero { background: #fff; padding-bottom: 3.6rem; }
.hero-sites-showcase {
    width: min(100vw, 1500px) !important;
    margin: 2.15rem auto 0 !important;
    padding: 2.6rem 0 0 !important;
    background: transparent !important;
    overflow: hidden;
}
.hero-sites-showcase .sites-label {
    color: #7b8799;
    letter-spacing: .14em;
    margin-bottom: 1rem;
}
.hero-sites-showcase .sites-marquee-wrap {
    cursor: default !important;
    overflow: hidden !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-sites-showcase .sites-track {
    animation: dm-auto-marquee 46s linear infinite !important;
    transform: translate3d(0,0,0);
    will-change: transform;
}
.hero-sites-showcase .sites-track-reverse {
    animation: dm-auto-marquee-reverse 58s linear infinite !important;
    margin-top: .9rem;
}
.hero-sites-showcase .site-card {
    width: clamp(210px, 18vw, 275px) !important;
    box-shadow: 0 14px 42px rgba(15,23,42,.10);
}
@keyframes dm-auto-marquee {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(-50%,0,0); }
}
@keyframes dm-auto-marquee-reverse {
    from { transform: translate3d(-50%,0,0); }
    to { transform: translate3d(0,0,0); }
}

/* Elementor: make the monitor slider actually read as a large website preview. */
.elementor {
    padding: 6.25rem 0 !important;
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%) !important;
}
.elementor-monitor-layout {
    grid-template-columns: minmax(0, .9fr) minmax(560px, 1.05fr) !important;
    gap: clamp(2rem, 5vw, 5rem) !important;
    align-items: center !important;
}
.elementor-copy .section-header,
.elementor-copy .section-heading,
.elementor-copy .section-sub,
.elementor-text,
.elementor-text p {
    text-align: left !important;
}
.elementor-copy .section-sub,
.elementor-text {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.elementor-text {
    max-width: 650px !important;
    font-size: 1.05rem !important;
    line-height: 1.78 !important;
}
.elementor-cta {
    max-width: 650px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem 1.1rem 1rem 1.25rem !important;
}
.elementor-cta p {
    max-width: none !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
}
.elementor-cta .btn {
    min-width: 210px;
    justify-content: center;
}
.elementor-monitor {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    min-width: 520px !important;
    margin: 0 0 0 auto !important;
    filter: drop-shadow(0 32px 70px rgba(37,99,235,.16));
}
.elementor-monitor-frame {
    width: 100% !important;
    padding: 16px 16px 22px !important;
    border-radius: 30px !important;
    background: linear-gradient(145deg, #0b1222 0%, #1d2a44 100%) !important;
    box-shadow: 0 38px 110px rgba(15,23,42,.28), inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
.elementor-monitor-screen {
    width: 100% !important;
    min-height: 340px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.elementor-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.elementor-slider-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 1rem;
}
.elementor-slider-prev { left: -24px !important; }
.elementor-slider-next { right: -24px !important; }
.elementor-monitor-stand {
    width: 32% !important;
    height: 18px !important;
    margin: 0 auto !important;
    border-radius: 0 0 18px 18px !important;
}
.elementor-monitor-stand::after {
    content: '';
    display: block;
    width: 70%;
    height: 12px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: rgba(15,23,42,.14);
    filter: blur(6px);
}
.elementor-slider-dots {
    margin-top: 2.15rem !important;
}
.elementor-dot {
    width: 10px !important;
    height: 10px !important;
}
.elementor-dot.active {
    width: 30px !important;
}

.footer-brand p { font-size: .92rem !important; }
.footer-links a,
.footer-links span { font-size: .86rem !important; }
.footer-bottom { font-size: .8rem !important; }

@media (max-width: 1180px) {
    .elementor-monitor-layout { grid-template-columns: 1fr !important; }
    .elementor-monitor { margin: 2rem auto 0 !important; min-width: 0 !important; }
}
@media (max-width: 768px) {
    .hero-sites-showcase .sites-marquee-wrap {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .hero-sites-showcase .sites-track,
    .hero-sites-showcase .sites-track-reverse {
        animation-duration: 34s !important;
    }
    .elementor { padding: 4.75rem 0 !important; }
    .elementor-cta { grid-template-columns: 1fr !important; }
    .elementor-monitor-screen { min-height: 210px !important; }
    .elementor-slider-prev { left: .5rem !important; }
    .elementor-slider-next { right: .5rem !important; }
}


/* ==================== v2.4 final polish ==================== */
/* Hero marquee full width + requested hero subtitle width. */
.hero-sub {
    font-size: 1.05rem !important;
    color: var(--text-soft) !important;
    max-width: 780px !important;
    line-height: 1.6 !important;
    margin: 0 auto 2rem !important;
}
.hero-sites-showcase {
    width: 100vw !important;
    max-width: none !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.hero-sites-showcase .sites-marquee-wrap {
    width: 100vw !important;
    max-width: none !important;
}
.hero-sites-showcase .sites-track {
    gap: 1rem !important;
    animation: dm-auto-marquee 42s linear infinite !important;
}
.hero-sites-showcase .sites-track-reverse {
    animation: dm-auto-marquee-reverse 54s linear infinite !important;
}
.hero-sites-showcase .site-card {
    width: clamp(230px, 20vw, 320px) !important;
}

/* About quote exact spacing and vertically centered robot icon. */
.about-quote {
    display: flex !important;
    gap: 0.6rem !important;
    background: #fff !important;
    border-radius: 14px !important;
    padding: 15px !important;
    border: 1px solid var(--border-soft) !important;
    box-shadow: var(--shadow-sm) !important;
    margin-top: 25px !important;
    align-items: center !important;
}
.about-quote-icon {
    margin-top: 0 !important;
    align-self: center !important;
}

/* Elementor monitor: larger, clearer, impossible to collapse into a tiny preview. */
.elementor-monitor-layout {
    grid-template-columns: minmax(390px, .8fr) minmax(620px, 1.2fr) !important;
    gap: clamp(2.5rem, 5vw, 5.5rem) !important;
}
.elementor-monitor {
    display: block !important;
    width: 100% !important;
    max-width: 760px !important;
    min-width: 620px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}
.elementor-monitor-frame {
    display: block !important;
    min-height: 430px !important;
    padding: 18px 18px 24px !important;
    border-radius: 34px !important;
}
.elementor-monitor-screen {
    display: block !important;
    width: 100% !important;
    min-height: 390px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #eaf2ff, #fff) !important;
}
.elementor-slide {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
}
.elementor-slide img,
.elementor-slide-icon {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.elementor-slider-btn {
    width: 52px !important;
    height: 52px !important;
}
.elementor-slider-prev { left: -26px !important; }
.elementor-slider-next { right: -26px !important; }

/* Mobile process grid: two columns, with the final step spanning cleanly. */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.8rem !important;
    }
    .process-card {
        min-height: 170px !important;
        padding: 1.1rem 0.9rem !important;
    }
    .process-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    .process-card h3 {
        font-size: 0.86rem !important;
    }
    .process-card p {
        font-size: 0.78rem !important;
    }
    .process-card-num {
        font-size: 4rem !important;
    }
}

/* Single posts: smaller gradient title and short top-only falling lines. */
.single-hero {
    position: relative !important;
    overflow: hidden !important;
    padding: 7.25rem 0 2.75rem !important;
    background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%) !important;
}
.single-hero .container {
    position: relative !important;
    z-index: 1 !important;
}
.single-hero h1 {
    max-width: 920px !important;
    margin: 0 auto !important;
    font-size: clamp(2rem, 4vw, 3.15rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    background: linear-gradient(90deg, #0f172a 0%, #2563eb 48%, #60a5fa 70%, #0f172a 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}
.single-hero-lines {
    height: 68% !important;
    width: min(92vw, 1100px) !important;
    opacity: .55 !important;
}
.single-hero .r-line {
    background: rgba(37,99,235,.08) !important;
}
.single-hero .r-line::after {
    height: 9vh !important;
    animation-duration: 5.8s !important;
}
.single-hero .r-line:nth-child(2)::after {
    animation-delay: 1.3s !important;
}

/* Keep every image/video/embed inside article content with radius. */
.single-content,
.page-content {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}
.single-content > *,
.page-content > * {
    max-width: 100% !important;
}
.single-content .alignwide,
.single-content .alignfull,
.page-content .alignwide,
.page-content .alignfull {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.single-content img,
.page-content img,
.single-content video,
.page-content video,
.single-content iframe,
.page-content iframe,
.single-content embed,
.page-content embed,
.single-content object,
.page-content object {
    max-width: 100% !important;
}
.single-content img,
.page-content img {
    height: auto !important;
    border-radius: 18px !important;
}
.single-content figure,
.page-content figure,
.single-content .wp-block-image,
.page-content .wp-block-image,
.single-content .wp-block-video,
.page-content .wp-block-video,
.single-content .wp-block-embed,
.page-content .wp-block-embed {
    max-width: 100% !important;
    margin: 1.5rem 0 !important;
}
.single-content figure img,
.page-content figure img,
.single-content .wp-block-image img,
.page-content .wp-block-image img {
    width: 100% !important;
    display: block !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 50px rgba(15,23,42,.08) !important;
}
.single-content .wp-block-embed__wrapper,
.page-content .wp-block-embed__wrapper,
.single-content .wp-block-video,
.page-content .wp-block-video {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #0f172a !important;
    box-shadow: 0 18px 50px rgba(15,23,42,.10) !important;
}
.single-content .wp-block-embed__wrapper iframe,
.page-content .wp-block-embed__wrapper iframe {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 18px !important;
}
.single-content .wp-block-video video,
.page-content .wp-block-video video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 18px !important;
}
.single-content table,
.page-content table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    border-collapse: collapse !important;
}

@media (max-width: 1180px) {
    .elementor-monitor-layout {
        grid-template-columns: 1fr !important;
    }
    .elementor-monitor {
        min-width: 0 !important;
        max-width: 820px !important;
        margin: 2rem auto 0 !important;
    }
}
@media (max-width: 768px) {
    .hero-sub {
        max-width: 100% !important;
        font-size: 0.95rem !important;
    }
    .hero-sites-showcase .site-card {
        width: 215px !important;
    }
    .elementor-monitor-frame {
        min-height: 0 !important;
    }
    .elementor-monitor-screen {
        min-height: 240px !important;
    }
    .single-hero {
        padding: 6.5rem 0 2.2rem !important;
    }
    .single-hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.65rem) !important;
    }
}

/* ==================== v2.5 requested polish ==================== */
/* Keep .blog body class neutral; only section.blog receives spacing. */
body.blog,
body.home.blog {
    padding: 0 !important;
    background: #fff !important;
}
body.blog #main-content,
body.home.blog #main-content { background: #fff !important; }
body.blog section.blog,
section.blog { padding: 5rem 0 !important; background: #fff !important; }

/* Replace shaky marquee with a stable full-width layered website wall. */
.hero-sites-showcase {
    width: 100vw !important;
    max-width: none !important;
    padding: 2.75rem 0 0 !important;
    margin-top: 1.25rem !important;
    overflow: hidden !important;
}
.hero-sites-showcase .sites-label {
    margin-bottom: 1.35rem !important;
}
.sites-grid-showcase {
    position: relative;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 clamp(1rem, 4vw, 4rem) 2.15rem;
    overflow: hidden;
    isolation: isolate;
}
.sites-grid-showcase::before,
.sites-grid-showcase::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}
.sites-grid-showcase::before {
    top: 0;
    height: 22px;
    background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,0));
}
.sites-grid-showcase::after {
    bottom: 0;
    height: 44%;
    background: linear-gradient(to top, #fff 0%, rgba(255,255,255,.88) 24%, rgba(255,255,255,0) 100%);
}
.sites-grid-showcase .site-card {
    width: 100% !important;
    aspect-ratio: 16 / 10;
    border-radius: 18px !important;
    box-shadow: 0 18px 55px rgba(15,23,42,.12) !important;
    transform: translateZ(0);
}
.sites-grid-showcase .hero-site-card:nth-child(n+6):not(.site-card-more) {
    transform: translateX(8%) translateZ(0);
}
.sites-grid-showcase .site-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-card-more {
    display: none !important;
    background: linear-gradient(135deg, #eff6ff, #fff) !important;
    border: 1px solid rgba(37,99,235,.18) !important;
    color: var(--text) !important;
    padding: 1rem !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: .35rem;
}
.site-card-more-icon {
    width: 42px;
    height: 42px;
    display: grid !important;
    place-items: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.35rem !important;
}
.site-card-more strong { font-size: .95rem; }
.site-card-more small { color: var(--text-soft); font-size: .72rem; line-height: 1.3; }

/* Elementor monitor slider: large and readable. */
.elementor-monitor-layout {
    grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr) !important;
    gap: clamp(2.5rem, 5vw, 5.25rem) !important;
}
.elementor-monitor {
    width: 100% !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    filter: drop-shadow(0 34px 75px rgba(15,23,42,.18)) !important;
}
.elementor-monitor-frame {
    position: relative !important;
    width: 100% !important;
    padding: 18px 18px 26px !important;
    border-radius: 34px !important;
    background: linear-gradient(145deg,#081326,#1e2b48) !important;
    box-shadow: 0 40px 110px rgba(15,23,42,.28), inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
.elementor-monitor-screen {
    position: relative !important;
    width: 100% !important;
    min-height: 420px !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #0f172a !important;
}
.elementor-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
}
.elementor-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
}
.elementor-slide img,
.elementor-slide-icon {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.elementor-slide-label { z-index: 3 !important; }
.elementor-slider-btn {
    width: 54px !important;
    height: 54px !important;
    z-index: 6 !important;
}
.elementor-slider-prev { left: -27px !important; }
.elementor-slider-next { right: -27px !important; }
.elementor-monitor-stand { display: block !important; }

/* Mobile offcanvas: full edge-to-edge panel with bottom CTA/footer stuck to the bottom. */
@media (max-width: 768px) {
    .offcanvas,
    .offcanvas-service {
        width: 100vw !important;
        max-width: none !important;
        padding: 1.2rem 1rem calc(1rem + env(safe-area-inset-bottom)) !important;
    }
    .offcanvas-bottom {
        margin-top: auto !important;
        position: sticky !important;
        bottom: 0 !important;
        background: linear-gradient(to top, #fff 78%, rgba(255,255,255,.92)) !important;
        padding: 1rem 0 0 !important;
        border-top: 1px solid var(--border-soft) !important;
    }

    .hero-sites-showcase {
        padding-top: 1.65rem !important;
    }
    .sites-grid-showcase {
        display: flex !important;
        gap: .85rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 15px 1.25rem !important;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .sites-grid-showcase::before,
    .sites-grid-showcase::after { display: none !important; }
    .sites-grid-showcase .hero-site-card {
        flex: 0 0 76vw !important;
        max-width: 280px !important;
        width: 76vw !important;
        scroll-snap-align: start;
        transform: none !important;
    }
    .sites-grid-showcase .hero-site-card:nth-child(n+9):not(.site-card-more) {
        display: none !important;
    }
    .site-card-more {
        display: flex !important;
        flex: 0 0 76vw !important;
        max-width: 280px !important;
        width: 76vw !important;
        scroll-snap-align: start;
    }
}
@media (min-width: 769px) and (max-width: 1180px) {
    .sites-grid-showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 769px) and (max-width: 920px) {
    .sites-grid-showcase {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Pricing: clearer range instead of soft inline text. */
.pricing-card {
    text-align: left !important;
    padding: 1.75rem !important;
}
.pricing-header { text-align: left !important; }
.pricing-price {
    display: block !important;
    margin: .9rem 0 .65rem !important;
    color: var(--text) !important;
}
.price-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: .5rem;
    width: 100%;
}
.price-from,
.price-to,
.price-single {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 900;
    color: var(--accent);
}
.price-to { color: #0f172a; }
.price-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 34px;
    height: 24px;
    padding: 0 .45rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pricing-desc { font-size: .86rem !important; }
.pricing-features li { font-size: .82rem !important; line-height: 1.45 !important; }
.pricing-card .btn { justify-content: center; }
@media (max-width: 420px) {
    .price-range { grid-template-columns: 1fr; gap: .35rem; }
    .price-sep { justify-self: start; }
}

/* Single featured image: preserve real aspect ratio on mobile and desktop. */
.single-featured {
    display: block !important;
    max-width: 960px !important;
    width: 100% !important;
    margin: 0 auto 2rem !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #f8fafc !important;
}
.single-featured img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px !important;
}
@media (max-width: 768px) {
    .single-featured {
        border-radius: 16px !important;
        margin-bottom: 1.35rem !important;
        box-shadow: 0 14px 36px rgba(15,23,42,.08) !important;
    }
    .single-featured img { border-radius: 16px !important; }
}

/* ==================== v2.6 final polish ==================== */
/* Hero website wall: cleaner fades, tighter radius. */
.sites-grid-showcase {
    padding-top: 1.15rem !important;
    padding-bottom: 2.45rem !important;
}
.sites-grid-showcase::before {
    top: 0 !important;
    height: 34% !important;
    background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,0) 100%) !important;
}
.sites-grid-showcase::after {
    bottom: 0 !important;
    height: 42% !important;
    background: linear-gradient(to top, #fff 0%, rgba(255,255,255,.86) 34%, rgba(255,255,255,0) 100%) !important;
}
.sites-grid-showcase .site-card,
.sites-grid-showcase .hero-site-card {
    border-radius: 6px !important;
    box-shadow: 0 15px 44px rgba(15,23,42,.11) !important;
}
.sites-grid-showcase .site-card img { border-radius: 6px !important; }
.site-card-more { border-radius: 6px !important; }

/* Pricing: stronger, cleaner range display. */
.pricing-grid { align-items: stretch !important; }
.pricing-card {
    border-radius: 18px !important;
    padding: 1.85rem !important;
    background: #fff !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    box-shadow: 0 18px 45px rgba(15,23,42,.045) !important;
    display: flex !important;
    flex-direction: column !important;
}
.pricing-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(37,99,235,.28) !important;
    box-shadow: 0 24px 60px rgba(15,23,42,.075) !important;
}
.pricing-featured {
    background: linear-gradient(180deg,#fff 0%,#f8fbff 100%) !important;
    border: 2px solid rgba(37,99,235,.72) !important;
    box-shadow: 0 28px 70px rgba(37,99,235,.14) !important;
}
.pricing-badge {
    top: -14px !important;
    box-shadow: 0 10px 30px rgba(37,99,235,.28) !important;
}
.pricing-header h3 {
    font-size: 1.08rem !important;
    letter-spacing: -.02em !important;
}
.pricing-price {
    display: block !important;
    margin: 1rem 0 .95rem !important;
    color: var(--text) !important;
}
.pricing-price span { font-size: inherit !important; }
.price-range {
    display: block !important;
    padding: 1rem 1rem .95rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%) !important;
    border: 1px solid rgba(37,99,235,.12) !important;
}
.price-label {
    display: block !important;
    margin-bottom: .45rem !important;
    font-size: .66rem !important;
    line-height: 1 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    color: #64748b !important;
}
.price-line {
    display: flex !important;
    align-items: baseline !important;
    gap: .42rem !important;
    flex-wrap: wrap !important;
}
.price-from,
.price-to,
.price-single {
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 2.7vw, 2.45rem) !important;
    line-height: .95 !important;
    letter-spacing: -.055em !important;
    font-weight: 900 !important;
    color: var(--accent) !important;
}
.price-to { color: #0f172a !important; }
.price-dash {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
}
.price-sep { display: none !important; }
.pricing-desc {
    font-size: .9rem !important;
    line-height: 1.55 !important;
    color: #334155 !important;
}
.pricing-features {
    margin-top: 1.1rem !important;
    flex: 1 1 auto !important;
}
.pricing-features li {
    font-size: .86rem !important;
    line-height: 1.5 !important;
    color: #334155 !important;
}
.pricing-card .btn-details {
    margin-top: auto !important;
    border-color: rgba(15,23,42,.12) !important;
    background: #fff !important;
}
.pricing-card .btn-details:hover {
    border-color: var(--accent) !important;
    background: var(--accent-soft) !important;
}
.pricing-start { margin-top: .65rem !important; }

/* Read next: modern horizontal card with thumbnail left and text right. */
.single-related-posts {
    margin-top: clamp(3rem, 6vw, 5rem) !important;
    padding-top: clamp(2rem, 4vw, 3rem) !important;
    border-top: 1px solid rgba(15,23,42,.08) !important;
}
.single-related-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: .35rem !important;
    margin-bottom: 1.25rem !important;
}
.single-related-head .section-tag,
.single-related-head .section-eyebrow {
    color: var(--accent) !important;
    text-transform: uppercase !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
}
.single-related-head h2 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.55rem, 3vw, 2.15rem) !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
    margin: 0 !important;
    color: #0f172a !important;
}
.single-related-head p {
    max-width: 620px !important;
    margin: .2rem 0 0 !important;
    color: var(--text-soft) !important;
    font-size: .95rem !important;
}
.single-related-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
}
.single-related-grid .entry-card {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 1rem !important;
    align-items: center !important;
    padding: .75rem !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%) !important;
    border: 1px solid rgba(15,23,42,.09) !important;
    box-shadow: 0 18px 45px rgba(15,23,42,.045) !important;
    overflow: hidden !important;
}
.single-related-grid .entry-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(37,99,235,.25) !important;
    box-shadow: 0 24px 60px rgba(15,23,42,.075) !important;
}
.single-related-grid .entry-card-media {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #eff6ff !important;
}
.single-related-grid .entry-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
}
.single-related-grid .entry-card-body {
    padding: .25rem .4rem .25rem 0 !important;
}
.single-related-grid .entry-meta {
    margin-bottom: .35rem !important;
    color: var(--accent) !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}
.single-related-grid .entry-card-body h2,
.single-related-grid .entry-card-body h3 {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    line-height: 1.18 !important;
    margin-bottom: .4rem !important;
    letter-spacing: -.02em !important;
}
.single-related-grid .entry-card-body p {
    font-size: .88rem !important;
    line-height: 1.5 !important;
    color: #475569 !important;
}
@media (max-width: 640px) {
    .single-related-grid .entry-card {
        grid-template-columns: 108px minmax(0, 1fr) !important;
        gap: .75rem !important;
        border-radius: 14px !important;
        padding: .6rem !important;
    }
    .single-related-grid .entry-card-media { border-radius: 10px !important; }
    .single-related-grid .entry-card-media img { border-radius: 10px !important; }
    .single-related-grid .entry-card-body p { display: none !important; }
}


/* ==================== v2.7 mobile/layout fixes ==================== */
/* Pricing: compact project label and centered prices. */
.pricing-card { padding: 1.75rem !important; }
.pricing-price { text-align: center !important; margin: .9rem 0 1rem !important; }
.price-range {
    padding: .9rem .85rem !important;
    border-radius: 12px !important;
    text-align: center !important;
}
.price-label {
    font-size: 12px !important;
    line-height: 1.1 !important;
    letter-spacing: .16em !important;
    margin-bottom: .42rem !important;
}
.price-line {
    justify-content: center !important;
    align-items: baseline !important;
    gap: .38rem !important;
}
.price-from,
.price-to,
.price-single {
    font-size: clamp(1.75rem, 2.25vw, 2.1rem) !important;
    letter-spacing: -.04em !important;
}
.price-dash { font-size: 1.2rem !important; }
@media (max-width: 768px) {
    .pricing-card { padding: 1.35rem !important; }
    .price-range { padding: .8rem .75rem !important; }
    .price-label { font-size: 12px !important; }
    .price-from,
    .price-to,
    .price-single { font-size: 1.9rem !important; }
}

/* Mobile header: no floating top gap, keep CTA next to menu. */
@media (max-width: 768px) {
    .header,
    .home .header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-radius: 0 !important;
        padding: .62rem 15px !important;
        gap: .55rem !important;
        background: rgba(255,255,255,.94) !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(15,23,42,.06) !important;
        box-shadow: 0 10px 28px rgba(15,23,42,.05) !important;
    }
    body.admin-bar .header,
    body.admin-bar.home .header { top: 46px !important; }
    .header .logo { margin-right: auto !important; min-width: 0 !important; }
    .header .logo-name { font-size: .98rem !important; }
    .header .logo-mark { width: 31px !important; height: 31px !important; }
    .header .header-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        font-size: .72rem !important;
        line-height: 1 !important;
        padding: .54rem .78rem !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
    }
    .menu-toggle {
        display: grid !important;
        flex-shrink: 0 !important;
        width: 36px !important;
        height: 36px !important;
    }
    .hero { padding-top: 7.25rem !important; }
}
@media (max-width: 380px) {
    .header .header-btn { font-size: .68rem !important; padding: .5rem .62rem !important; }
    .header .logo-name-wrap { display:none !important; }
}

/* Elementor mobile: stop text squeezing into one-word columns, keep monitor visible. */
@media (max-width: 768px) {
    .elementor {
        padding: 4rem 0 !important;
        overflow: hidden !important;
    }
    .elementor .container { width: calc(100% - 30px) !important; }
    .elementor-monitor-layout,
    .elementor-split {
        display: block !important;
        grid-template-columns: none !important;
        min-width: 0 !important;
    }
    .elementor-copy,
    .elementor-copy .section-header,
    .elementor-copy .section-heading,
    .elementor-copy .section-sub,
    .elementor-text,
    .elementor-text p {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        text-align: left !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }
    .elementor-copy .section-header { margin-bottom: 1.15rem !important; }
    .elementor-copy .section-heading { font-size: clamp(2rem, 10vw, 2.65rem) !important; line-height: 1.02 !important; }
    .elementor-copy .section-sub { font-size: .95rem !important; line-height: 1.55 !important; }
    .elementor-text { font-size: .98rem !important; line-height: 1.7 !important; }
    .elementor-cta {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: .75rem !important;
        padding: 1rem !important;
        margin-top: 1.2rem !important;
    }
    .elementor-cta .btn { width: 100% !important; justify-content: center !important; }
    .elementor-monitor {
        width: 100% !important;
        max-width: 430px !important;
        min-width: 0 !important;
        margin: 2rem auto 0 !important;
    }
    .elementor-monitor-frame { padding: 10px !important; border-radius: 22px !important; }
    .elementor-monitor-screen { min-height: 220px !important; border-radius: 15px !important; }
    .elementor-slider-btn { width: 38px !important; height: 38px !important; }
    .elementor-slider-prev { left: .45rem !important; }
    .elementor-slider-next { right: .45rem !important; }
}

/* Security checker drawer: fit the drawer and reduce giant plugin typography. */
.dm-security-drawer-panel {
    padding: 1.75rem !important;
}
.dm-security-drawer .section-eyebrow { font-size: .68rem !important; }
.dm-security-drawer h2#dmSecurityDrawerTitle {
    font-size: clamp(1.45rem, 4vw, 1.9rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    max-width: calc(100% - 48px) !important;
}
.dm-security-drawer p { font-size: .92rem !important; line-height: 1.55 !important; }
.dm-security-drawer .dm-wpsc {
    padding: 1rem 0 0 !important;
    margin: 0 !important;
}
.dm-security-drawer .dm-wpsc-shell {
    max-width: 100% !important;
    padding: 1.15rem !important;
    border-radius: 22px !important;
}
.dm-security-drawer .dm-wpsc-head { margin-bottom: 1rem !important; }
.dm-security-drawer .dm-wpsc-kicker {
    font-size: 10px !important;
    padding: .45rem .65rem !important;
    letter-spacing: .08em !important;
}
.dm-security-drawer .dm-wpsc h2 {
    font-size: clamp(2rem, 6vw, 2.8rem) !important;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
    margin: .8rem 0 .65rem !important;
}
.dm-security-drawer .dm-wpsc-head p {
    font-size: .95rem !important;
    line-height: 1.55 !important;
}
.dm-security-drawer .dm-wpsc-form { margin-top: 1.05rem !important; }
.dm-security-drawer .dm-wpsc-input-wrap,
.dm-security-drawer .dm-wpsc-form button {
    min-height: 52px !important;
    border-radius: 15px !important;
}
.dm-security-drawer .dm-wpsc-powered { font-size: 12px !important; }
@media (max-width: 768px) {
    .dm-security-drawer-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.25rem !important;
    }
    .dm-security-drawer-close { top: .75rem !important; right: .75rem !important; }
    .dm-security-drawer h2#dmSecurityDrawerTitle { font-size: 1.55rem !important; }
    .dm-security-drawer .dm-wpsc h2 { font-size: clamp(1.9rem, 11vw, 2.55rem) !important; }
    .dm-security-drawer .dm-wpsc-shell { padding: 1rem !important; border-radius: 20px !important; }
}

/* Contact plugin: do not let theme button styles block/override step buttons. */
.dmcf-form .dmcf-next,
.dmcf-form .dmcf-back,
.dmcf-form button[type="submit"] {
    pointer-events: auto !important;
}
.dmcf-service-card,
.dmcf-service-card * { pointer-events: auto; }

/* ==================== v2.8 mobile/forms/security refinements ==================== */
html,
body {
    overflow-x: clip !important;
    max-width: 100% !important;
    box-shadow: none !important;
}
body::before,
body::after,
#page::before,
#page::after { box-shadow: none !important; }

/* Pricing: compact centered price box. */
.pricing-header h3 {
    text-align: center !important;
    font-size: clamp(1.2rem, 2vw, 1.38rem) !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -.035em !important;
    margin-bottom: .85rem !important;
}
.pricing-price,
.pricing-price span {
    text-align: center !important;
}
.price-range {
    display: block !important;
    text-align: center !important;
    padding: 1rem .9rem !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg,#f8fbff 0%,#fff 100%) !important;
}
.price-label {
    display: block !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    letter-spacing: .14em !important;
    margin: 0 0 .55rem !important;
    text-align: center !important;
    white-space: normal !important;
}
.price-line {
    justify-content: center !important;
    align-items: baseline !important;
    gap: .38rem !important;
    text-align: center !important;
}
.price-from,
.price-to,
.price-single {
    font-size: clamp(1.65rem, 2.35vw, 2.05rem) !important;
    line-height: 1 !important;
}
.price-dash { font-size: 1.15rem !important; }
.pricing-desc { font-size: .92rem !important; line-height: 1.55 !important; }

/* Hero CTAs centered on all sizes, with mobile full-width tidy text. */
.hero-btns { justify-content: center !important; text-align: center !important; }
.hero-btns .btn { justify-content: center !important; text-align: center !important; }
@media (max-width: 480px) {
    .hero-btns { align-items: stretch !important; }
    .hero-btns .btn { width: 100% !important; }
}

/* Mobile header: no top gap, CTA stays visible next to menu. */
@media (max-width: 768px) {
    .home .header,
    .header {
        top: 0 !important;
        padding: .58rem 14px !important;
        width: 100% !important;
        min-height: 58px !important;
        border-radius: 0 !important;
    }
    body.admin-bar .header,
    body.admin-bar.home .header { top: 46px !important; }
    .header .header-btn {
        display: inline-flex !important;
        margin-left: auto !important;
        margin-right: .55rem !important;
        padding: .52rem .78rem !important;
        font-size: .72rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
    .menu-toggle {
        display: grid !important;
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
    }
    .logo { min-width: 0 !important; }
    .logo-name { font-size: .95rem !important; }
}
@media (max-width: 370px) {
    .header .header-btn { font-size: .68rem !important; padding: .5rem .65rem !important; }
}

/* Hero site cards mobile: proper left gap, no visible scrollbar, no shadow. */
@media (max-width: 768px) {
    .sites-grid-showcase {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-bottom: .85rem !important;
        gap: 15px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .sites-grid-showcase::-webkit-scrollbar { display: none !important; }
    .sites-grid-showcase .site-card,
    .sites-grid-showcase .hero-site-card,
    .site-card-more {
        box-shadow: none !important;
        border-color: rgba(15,23,42,.08) !important;
    }
}

/* About/services: reduce vertical gaps, especially mobile. */
.about { padding-top: 4.2rem !important; padding-bottom: 4.4rem !important; }
.services { padding-top: 4.25rem !important; padding-bottom: 4.25rem !important; }
.about-quote {
    padding: 15px !important;
    margin-top: 25px !important;
}
.about-quote-icon { align-self: center !important; margin-top: 0 !important; }
@media (max-width: 768px) {
    .about { padding-top: 3rem !important; padding-bottom: 3.25rem !important; }
    .services { padding-top: 3.25rem !important; padding-bottom: 3.25rem !important; }
    .about-grid { gap: 1.3rem !important; }
    .about-quote {
        display: block !important;
        padding: 15px !important;
        margin-top: 18px !important;
    }
    .about-quote-icon {
        display: block !important;
        margin: 0 0 .55rem !important;
    }
}

/* Elementor section mobile: prevent one-word columns and keep monitor below text. */
@media (max-width: 768px) {
    .elementor { padding: 3.5rem 0 !important; }
    .elementor-split {
        display: block !important;
    }
    .elementor-copy,
    .elementor-text,
    .elementor-copy .section-header,
    .elementor-copy .section-sub {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        text-align: left !important;
    }
    .elementor-copy .section-heading,
    .elementor-copy h2 {
        font-size: clamp(2rem, 10vw, 2.7rem) !important;
        max-width: 100% !important;
    }
    .elementor-text p {
        font-size: .98rem !important;
        line-height: 1.7 !important;
        text-align: left !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    .elementor-showcase { width: 100% !important; margin-top: 1.8rem !important; }
    .elementor-monitor { max-width: 100% !important; width: 100% !important; }
}

/* Contact form plugin: nicer step 2 width/actions/note and keep step buttons reliable. */
.contact-form-shell { max-width: min(100%, 1120px) !important; }
.dmcf-shell { max-width: 100% !important; }
.dmcf-form { max-width: 100% !important; }
.dmcf-step-details {
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.dmcf-step-details .form-row { gap: 1rem !important; }
.dmcf-step-details input,
.dmcf-step-details textarea {
    font-size: .94rem !important;
}
.dmcf-actions {
    display: flex !important;
    align-items: center !important;
    gap: .85rem !important;
}
.dmcf-back {
    flex: 0 0 145px !important;
    min-width: 145px !important;
}
.dmcf-actions button[type="submit"] {
    flex: 1 1 auto !important;
    justify-content: center !important;
    text-align: center !important;
}
.dmcf-actions button[type="submit"] span:first-child { flex: 0 0 auto !important; }
.form-note {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .35rem !important;
    margin-top: .85rem !important;
    text-align: center !important;
    font-size: .8rem !important;
    line-height: 1.4 !important;
    color: #7b8798 !important;
}
.form-note .material-symbols-rounded { font-size: 1rem !important; }
@media (max-width: 720px) {
    .dmcf-step-details { max-width: 100% !important; }
    .dmcf-actions { flex-direction: row !important; }
    .dmcf-back {
        flex: 0 0 96px !important;
        min-width: 96px !important;
        padding-left: .8rem !important;
        padding-right: .8rem !important;
    }
    .dmcf-actions button[type="submit"] {
        min-width: 0 !important;
        padding-left: .8rem !important;
        padding-right: .8rem !important;
    }
}
@media (max-width: 420px) {
    .dmcf-actions { gap: .55rem !important; }
    .dmcf-back { flex-basis: 86px !important; font-size: .82rem !important; }
    .dmcf-actions button[type="submit"] { font-size: .86rem !important; }
}

/* Security checker drawer: compact mobile scanner card and vertical form. */
.dm-security-drawer-panel {
    box-shadow: none !important;
}
.dm-security-drawer .dm-wpsc-shell {
    background: linear-gradient(160deg,#071322 0%,#06101d 100%) !important;
}
.dm-security-drawer .dm-wpsc-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .72rem !important;
}
.dm-security-drawer .dm-wpsc-input-wrap,
.dm-security-drawer .dm-wpsc-form button {
    width: 100% !important;
    min-width: 0 !important;
}
.dm-security-drawer .dm-wpsc-form button {
    justify-content: center !important;
}
.dm-security-drawer .dm-wpsc-results,
.dm-security-drawer .dm-wpsc-result,
.dm-security-drawer .dm-wpsc-report {
    font-size: .88rem !important;
    line-height: 1.45 !important;
}
@media (max-width: 768px) {
    .dm-security-drawer-panel {
        padding: 1rem !important;
        height: 100dvh !important;
        overflow-x: hidden !important;
    }
    .dm-security-drawer .section-eyebrow { font-size: .64rem !important; }
    .dm-security-drawer h2#dmSecurityDrawerTitle {
        font-size: 1.5rem !important;
        line-height: 1.05 !important;
        margin: .35rem 2.25rem .55rem 0 !important;
    }
    .dm-security-drawer > p,
    .dm-security-drawer-panel > p { font-size: .86rem !important; }
    .dm-security-drawer .dm-wpsc { padding-top: .75rem !important; }
    .dm-security-drawer .dm-wpsc-shell {
        padding: .9rem !important;
        border-radius: 18px !important;
    }
    .dm-security-drawer .dm-wpsc-kicker { font-size: 9px !important; }
    .dm-security-drawer .dm-wpsc h2 {
        font-size: clamp(1.75rem, 9.2vw, 2.25rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -.055em !important;
        margin: .75rem 0 .55rem !important;
    }
    .dm-security-drawer .dm-wpsc-head p { font-size: .86rem !important; line-height: 1.45 !important; }
    .dm-security-drawer .dm-wpsc-input-wrap,
    .dm-security-drawer .dm-wpsc-form button {
        min-height: 48px !important;
        border-radius: 14px !important;
    }
    .dm-security-drawer-cta p { font-size: .86rem !important; }
}

/* Mobile offcanvas: remove bottom gap, single bottom divider, LinkedIn/Upwork icons. */
.social-link-text {
    font-family: var(--font-display) !important;
    font-weight: 900 !important;
    font-size: .82rem !important;
    letter-spacing: -.02em !important;
}
@media (max-width: 768px) {
    .overlay.active { background: rgba(0,0,0,.48) !important; }
    .offcanvas,
    .offcanvas-service {
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }
    .offcanvas-header {
        margin-bottom: .9rem !important;
        padding-bottom: .8rem !important;
        border-bottom: 1px solid var(--border-soft) !important;
    }
    .offcanvas-nav {
        overflow-y: auto !important;
        padding-bottom: 1rem !important;
    }
    .offcanvas-link {
        border-bottom: 1px solid var(--border-soft) !important;
    }
    .offcanvas-bottom {
        position: sticky !important;
        bottom: 0 !important;
        margin-top: auto !important;
        padding: .85rem 1rem calc(.9rem + env(safe-area-inset-bottom)) !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        border-top: 1px solid var(--border-soft) !important;
        background: #fff !important;
        box-shadow: 0 -18px 40px rgba(15,23,42,.06) !important;
    }
    .offcanvas-socials { gap: .65rem !important; }
}

/* FAQ last item/double border cleanup. */
.faq-item:last-child { border-bottom: 1px solid var(--border) !important; }
.faq-grid .faq-item + .faq-item { margin-top: 0 !important; }


/* ==================== v2.9 pricing label hard override ==================== */
.pricing-price .pricing-range-kicker {
    display: block !important;
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    color: #64748b !important;
    text-align: center !important;
    white-space: nowrap !important;
    margin: 0 0 .5rem !important;
}
.pricing-price .price-range {
    padding: .85rem .8rem !important;
}
@media (max-width: 480px) {
    .pricing-price .pricing-range-kicker {
        font-size: 10px !important;
        letter-spacing: .12em !important;
    }
}


/* ==================== v2.11 performance build ==================== */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-shadow: none !important;
    filter: none !important;
}
body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    background: #fff !important;
}
body::before, body::after, html::before, html::after,
#page::before, #page::after, .site::before, .site::after {
    display: none !important;
    content: none !important;
    box-shadow: none !important;
    filter: none !important;
}
#main-content, .hero, .hero-sites-showcase, .sites-grid-showcase, .elementor, .contact, .footer {
    max-width: 100vw !important;
}
/* Right-side fake shadow was coming from over-wide/glow layers; keep fades vertical only. */
.sites-grid-showcase::before,
.sites-grid-showcase::after {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-shadow: none !important;
    filter: none !important;
}
.site-card,
.hero-site-card,
.sites-grid-showcase .site-card,
.sites-grid-showcase .hero-site-card {
    box-shadow: none !important;
    filter: none !important;
    border-radius: 6px !important;
}
.site-card:hover,
.hero-site-card:hover,
.entry-card:hover {
    transform: none !important;
}
/* When Google/Material fonts are off, never show raw icon words like arrow_forward. */
.dm-performance-fonts .material-symbols-rounded {
    font-size: 0 !important;
    width: 1em !important;
    min-width: 1em !important;
    height: 1em !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    vertical-align: -0.12em !important;
}
.dm-performance-fonts .material-symbols-rounded::before {
    content: "" !important;
    width: .58em !important;
    height: .58em !important;
    border-radius: 999px !important;
    background: currentColor !important;
    display: block !important;
}
/* Reduce above-fold image pressure and keep showcase stable. */
.hero-sites-showcase { contain: layout paint; }
.sites-grid-showcase { contain: layout paint; }
@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; }
    .hero, .hero-sites-showcase, .sites-grid-showcase { max-width: 100% !important; }
    .sites-grid-showcase {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .sites-grid-showcase::before,
    .sites-grid-showcase::after { display: none !important; }
}


/* ==================== v2.12 UI stability + icons restored ==================== */
/* Stable scrollbar model: only the main document scrolls vertically. */
html {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
}
body {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh !important;
}
body.dm-system-fonts {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}
.footer::after { display: none !important; content: none !important; }

/* Icons are loaded again. Never hide Material Symbols or replace them with dots. */
.dm-performance-fonts .material-symbols-rounded,
.dm-system-fonts .material-symbols-rounded,
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 1.2em !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    -webkit-font-feature-settings: 'liga' !important;
    -webkit-font-smoothing: antialiased !important;
    font-feature-settings: 'liga' !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    overflow: visible !important;
    vertical-align: -0.16em !important;
}
.dm-performance-fonts .material-symbols-rounded::before,
.dm-system-fonts .material-symbols-rounded::before,
.material-symbols-rounded::before {
    content: none !important;
    display: none !important;
}
.back-to-top .material-symbols-rounded { font-size: 1.15rem !important; }

/* Hero text was too large after the performance critical CSS pass. */
.hero-title {
    font-size: clamp(2.75rem, 6.2vw, 5.25rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.048em !important;
    max-width: 1040px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.hero-accent-word::after { height: .13em !important; bottom: .03em !important; }
.hero { min-height: auto !important; padding-top: 8.75rem !important; padding-bottom: 3rem !important; overflow: hidden !important; }

/* Hero showcase should not create its own vertical scroller or right-side shadow/fade. */
.hero-sites-showcase,
.hero-sites-showcase .sites-marquee-wrap,
.sites-grid-showcase {
    overflow-y: hidden !important;
    box-shadow: none !important;
    filter: none !important;
}
.hero-sites-showcase {
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    contain: layout paint !important;
}
.sites-grid-showcase {
    width: 100% !important;
    max-width: 100% !important;
}
.site-card,
.hero-site-card,
.sites-grid-showcase .site-card,
.sites-grid-showcase .hero-site-card {
    box-shadow: none !important;
    filter: none !important;
}

/* Remove any accidental right glow layers while keeping the top/bottom fade. */
.hero::after,
.hero-sites-showcase::after,
.sites-marquee-wrap::after { box-shadow: none !important; filter: none !important; }

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.45rem, 8.5vw, 4.4rem) !important;
        line-height: 1.04 !important;
    }
}
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    body { overflow-y: visible !important; }
    .hero {
        padding-top: 6.4rem !important;
        padding-bottom: 2.25rem !important;
    }
    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.35rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.052em !important;
    }
    .hero-sub { font-size: .94rem !important; line-height: 1.58 !important; }
    .hero-sites-showcase { margin-top: 1.25rem !important; padding-top: 1.25rem !important; }
    .sites-grid-showcase {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    .sites-grid-showcase::-webkit-scrollbar { display: none !important; }
    .sites-grid-showcase .site-card,
    .sites-grid-showcase .hero-site-card { box-shadow: none !important; }
}

/* ==================== v2.13 icon alignment fixes ==================== */
/* Portfolio cards: keep the icon inside a padded glass badge over the image. */
.portfolio-thumb > .material-symbols-rounded,
.portfolio-thumb .material-symbols-rounded {
    position: absolute !important;
    right: .8rem !important;
    bottom: .8rem !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.92) !important;
    color: var(--accent) !important;
    font-size: 19px !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(15,23,42,.14) !important;
    border: 1px solid rgba(255,255,255,.7) !important;
    z-index: 3 !important;
    overflow: hidden !important;
}
.portfolio-thumb > .material-symbols-rounded::before,
.portfolio-thumb .material-symbols-rounded::before { content: none !important; display: none !important; }
@media (max-width: 768px) {
    .portfolio-thumb > .material-symbols-rounded,
    .portfolio-thumb .material-symbols-rounded {
        right: .65rem !important;
        bottom: .65rem !important;
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        border-radius: 10px !important;
        font-size: 17px !important;
    }
}

/* Contact form service cards: undo generic icon rules so the plugin icon stays a compact square. */
.dmcf-form .dmcf-service-card .dmcf-service-icon,
.contact .dmcf-form .dmcf-service-card .dmcf-service-icon,
.dmcf-service-card > .material-symbols-rounded.dmcf-service-icon {
    position: static !important;
    inset: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 0 .35rem 0 !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #e0f2fe !important;
    color: var(--accent) !important;
    font-size: 21px !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-indent: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    vertical-align: middle !important;
}
.dmcf-form .dmcf-service-card .dmcf-service-icon::before,
.contact .dmcf-form .dmcf-service-card .dmcf-service-icon::before {
    content: none !important;
    display: none !important;
}
.dmcf-form .dmcf-service-card {
    isolation: isolate !important;
}
.dmcf-form .dmcf-service-card::before,
.dmcf-form .dmcf-service-card::after {
    content: none !important;
    display: none !important;
}
.dmcf-form .dmcf-service-check {
    z-index: 2 !important;
}
@media (max-width: 720px) {
    .dmcf-form .dmcf-service-card .dmcf-service-icon,
    .contact .dmcf-form .dmcf-service-card .dmcf-service-icon,
    .dmcf-service-card > .material-symbols-rounded.dmcf-service-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        font-size: 19px !important;
    }
    .dmcf-form .dmcf-service-card {
        grid-template-columns: 36px 1fr !important;
        column-gap: .8rem !important;
    }
}

/* ==================== v2.14 hero website wall desktop polish ==================== */
@media (min-width: 769px) {
    .hero-sites-showcase {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        overflow: hidden !important;
        contain: layout paint !important;
    }
    .hero-sites-showcase .sites-marquee-wrap,
    .sites-grid-showcase {
        width: 100vw !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .sites-grid-showcase {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 1rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 2.25rem !important;
        overflow: hidden !important;
    }
    .sites-grid-showcase .site-card,
    .sites-grid-showcase .hero-site-card,
    .sites-grid-showcase .hero-site-card:nth-child(n+6):not(.site-card-more) {
        transform: none !important;
        transition: none !important;
    }
    .sites-grid-showcase .site-card:hover,
    .sites-grid-showcase .hero-site-card:hover,
    .sites-grid-showcase .hero-site-card:nth-child(n+6):hover:not(.site-card-more) {
        transform: none !important;
        z-index: 1 !important;
    }
    .sites-grid-showcase .site-card img,
    .sites-grid-showcase .hero-site-card img {
        transition: filter .22s ease, opacity .22s ease !important;
    }
    .sites-grid-showcase .site-card:hover img,
    .sites-grid-showcase .hero-site-card:hover img {
        filter: brightness(1.16) saturate(1.04) !important;
        opacity: .98 !important;
    }
    .sites-grid-showcase .site-card:hover .site-card-overlay,
    .sites-grid-showcase .hero-site-card:hover .site-card-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,.48)) !important;
    }
}


/* ==================== v2.15 staggered desktop website wall ==================== */
@media (min-width: 769px) {
    .sites-grid-showcase {
        --dm-site-wall-offset: calc(((100vw - 4rem) / 10) + .5rem);
    }
    .sites-grid-showcase .hero-site-card:nth-child(n+6):not(.site-card-more),
    .sites-grid-showcase .site-card:nth-child(n+6):not(.site-card-more) {
        transform: translate3d(var(--dm-site-wall-offset), 0, 0) !important;
    }
    .sites-grid-showcase .hero-site-card:nth-child(n+6):hover:not(.site-card-more),
    .sites-grid-showcase .site-card:nth-child(n+6):hover:not(.site-card-more) {
        transform: translate3d(var(--dm-site-wall-offset), 0, 0) !important;
    }
}


/* v2.16 portfolio load more */
.portfolio-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.portfolio-loadmore {
    min-width: 220px;
    justify-content: center;
}
.portfolio-grid .portfolio-item.hidden {
    display: none !important;
}
