:root {
    --bg: #fafaf9;
    --bg-warm: #f3f2ef;
    --text: #171717;
    --text-soft: #525252;
    --text-muted: #a3a3a3;
    --accent: var(--accent);
    --accent-dark: var(--accent-dark);
    --accent-soft: var(--accent-soft);
    --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:var(--success); 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:var(--accent-soft); 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:var(--success); 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, var(--accent-soft) 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:var(--accent-border); 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:var(--success); 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:var(--accent-border); 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, var(--accent-soft) 0%, #fafaf9 50%, var(--accent-soft) 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:var(--accent-border); 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:var(--success); 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), var(--accent-light)); opacity:0; transition:opacity 0.3s; }
.testimonial-card:hover::before { opacity:1; }
.testimonial-card:hover { box-shadow:var(--shadow-md); }
.testimonial-stars { color:var(--warning); 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:var(--accent-border); 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%, var(--accent-soft) 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:var(--success); 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:var(--success); 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, var(--accent-soft) 0%, #fafaf9 40%, var(--accent-soft) 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:var(--brand-dark); 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:var(--footer-text); }
.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:var(--footer-text); transition:color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--footer-border); 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:var(--accent-light);--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:var(--success)}.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:var(--accent-soft)}.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:var(--accent-border)}.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: var(--success); 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,var(--accent-soft) 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,var(--brand-dark),var(--footer-border)); 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:var(--accent-light); background:var(--brand-dark); }
.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,var(--footer-border),var(--brand-dark)); 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, var(--brand-dark) 0%, var(--accent) 48%, var(--accent-light) 70%, var(--brand-dark) 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: var(--brand-dark) !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, var(--accent-soft), #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: var(--brand-dark) !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: var(--brand-dark); }
.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, var(--accent-soft) 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: var(--brand-dark) !important; }
.price-dash {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--footer-text) !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: var(--brand-dark) !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: var(--accent-soft) !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;
}

/* SimpleLook v1.0.1 additions */
.brand-logo{display:inline-flex;align-items:center;line-height:1}.brand-logo img{display:block;width:auto;max-width:220px;object-fit:contain}.footer .brand-logo img{max-width:240px}.service-page-hero,.contact-page-hero{position:relative;overflow:hidden;background:#fff;padding:9rem 0 4.5rem;text-align:center}.service-page-hero-inner{position:relative;z-index:1}.service-page-icon{width:64px;height:64px;margin:0 auto 1rem;border-radius:18px;background:var(--accent-soft,var(--accent-soft));display:grid;place-items:center;color:var(--accent);font-size:1.8rem}.service-page-hero h1,.contact-page-hero h1{font-family:var(--font-display);font-size:clamp(2.4rem,6vw,5.6rem);line-height:.96;letter-spacing:-.055em;max-width:940px;margin:0 auto 1rem}.service-page-hero p,.contact-page-hero p{max-width:760px;margin:0 auto;color:var(--text-soft);font-size:1.08rem;line-height:1.7}.service-page-actions{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;margin-top:2rem}.service-highlights{padding:2rem 0;background:#f8fbff}.service-highlight-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.service-highlight{display:flex;gap:.6rem;align-items:center;background:#fff;border:1px solid var(--border);border-radius:16px;padding:1rem;box-shadow:var(--shadow-sm)}.service-highlight .material-symbols-rounded{color:var(--success)}.service-highlight p{margin:0;color:var(--text);font-weight:700;font-size:.92rem}.service-page-content{padding:5rem 0;background:#fff}.service-page-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.service-section-card{border:1px solid var(--border);border-radius:22px;padding:1.5rem;background:#fff;box-shadow:var(--shadow-sm)}.service-section-card h2{font-family:var(--font-display);font-size:clamp(1.5rem,3vw,2.2rem);line-height:1.1;letter-spacing:-.03em;margin:.3rem 0 .85rem}.service-section-text{color:var(--text-soft);line-height:1.7}.service-section-card ul{list-style:none;margin:1.25rem 0 0;padding:0;display:grid;gap:.55rem}.service-section-card li{display:flex;gap:.45rem;align-items:flex-start;color:var(--text-soft);font-size:.92rem}.service-section-card li .material-symbols-rounded{color:var(--success);font-size:1rem;margin-top:.15rem}.service-faq{padding:5rem 0;background:linear-gradient(180deg,var(--accent-soft) 0%,#fff 100%)}.service-cta{padding:4rem 0 5rem;background:#fff}.service-cta-box{border-radius:28px;background:var(--brand-dark);color:#fff;text-align:center;padding:3rem 1.5rem;box-shadow:0 24px 70px rgba(15,23,42,.15)}.service-cta-box h2{font-family:var(--font-display);font-size:clamp(2rem,4vw,3rem);line-height:1;margin-bottom:.7rem}.service-cta-box p{color:#cbd5e1;max-width:620px;margin:0 auto 1.5rem}.contact-page-main{padding:4rem 0 6rem;background:linear-gradient(180deg,#f8fbff,#fff)}.contact-page-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:1.5rem;align-items:start}.contact-page-info,.contact-page-form{background:#fff;border:1px solid var(--border);border-radius:22px;padding:1.5rem;box-shadow:var(--shadow-sm)}.contact-page-info h2{font-family:var(--font-display);font-size:1.7rem;letter-spacing:-.03em;margin-bottom:.7rem}.contact-page-info p{color:var(--text-soft);line-height:1.7}.contact-page-info ul{list-style:none;margin:1.25rem 0 0;padding:0;display:grid;gap:.75rem}.contact-page-info li{display:flex;gap:.55rem;align-items:flex-start;color:var(--text-soft);font-size:.95rem}.contact-page-info li .material-symbols-rounded{color:var(--accent);font-size:1.1rem;margin-top:.1rem}.archive-hero h1,.single-hero h1,.page-hero h1{max-width:860px;margin-inline:auto}.portfolio-note{font-size:.85rem}.site-card-more small{font-size:.68rem;line-height:1.25}.logo-tagline{pointer-events:none}.footer .logo{display:inline-flex}
@media(max-width:900px){.service-highlight-grid,.service-page-grid,.contact-page-grid{grid-template-columns:1fr}.service-page-hero,.contact-page-hero{padding:7.5rem 0 3rem}.service-page-actions{flex-direction:column;align-items:stretch}.service-page-actions .btn{width:100%}.service-highlight-grid{gap:.75rem}.contact-page-main{padding:2.5rem 0 4rem}.brand-logo img{max-width:175px}.footer .brand-logo img{max-width:190px}}


/* SimpleLook v1.0.2 - premium contact page */
.sl-contact-page{background:#fff;}
.sl-contact-hero{padding-bottom:3.5rem;}
.sl-contact-main{padding:3rem 0 4rem;background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);} 
.sl-contact-layout{width:min(100% - 2rem,1320px);display:grid;grid-template-columns:minmax(320px,.9fr) minmax(0,1.35fr);gap:1.25rem;align-items:start;}
.sl-contact-panel{background:#fff;border:1px solid var(--border);border-radius:24px;box-shadow:0 18px 50px rgba(15,23,42,.06);}
.sl-company-card{padding:1.4rem;position:sticky;top:6rem;}
.sl-company-card h2{font-family:var(--font-display);font-size:clamp(1.65rem,3vw,2.4rem);line-height:1;letter-spacing:-.04em;margin:.15rem 0 1.1rem;}
.sl-company-list{display:grid;gap:.55rem;}
.sl-company-list>div{display:grid;grid-template-columns:118px 1fr;gap:.75rem;align-items:start;padding:.75rem .85rem;border:1px solid #eef2f7;border-radius:14px;background:#f8fafc;}
.sl-company-list span{font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:var(--footer-text);font-weight:800;}
.sl-company-list strong{font-size:.9rem;color:#111827;line-height:1.45;word-break:break-word;}
.sl-company-list a{color:var(--accent);}
.sl-social-row{display:flex;flex-wrap:wrap;gap:.5rem;margin:1rem 0;}
.sl-social-row a{display:inline-flex;align-items:center;gap:.35rem;border:1px solid #e2e8f0;background:#fff;border-radius:999px;padding:.55rem .8rem;font-size:.82rem;font-weight:800;color:var(--brand-dark);transition:all .2s ease;}
.sl-social-row a:hover{border-color:var(--accent-border);background:var(--accent-soft);color:var(--accent);}
.sl-social-row .material-symbols-rounded{font-size:1rem;}
.sl-collab-box{display:flex;gap:.85rem;align-items:flex-start;margin-top:1rem;padding:1rem;border-radius:18px;background:var(--brand-dark);color:#fff;}
.sl-collab-box>.material-symbols-rounded{width:40px;height:40px;flex:0 0 40px;border-radius:12px;background:rgba(255,255,255,.1);display:grid;place-items:center;color:var(--accent-light);}
.sl-collab-box h3{font-size:1rem;margin:0 0 .35rem;}
.sl-collab-box p{font-size:.9rem;line-height:1.65;color:#cbd5e1;margin:0;}
.sl-contact-form-card{padding:1rem;}
.sl-contact-form-card .dmcf-form{box-shadow:none;border-radius:20px;border-color:#e6edf5;}
.sl-contact-testimonials{padding:4.5rem 0;background:linear-gradient(180deg,#fff 0%,var(--accent-soft) 100%);overflow:hidden;}
.sl-testimonial-marquee{width:100%;overflow:hidden;mask-image:linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);-webkit-mask-image:linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);}
.sl-testimonial-track{display:flex;gap:1rem;width:max-content;animation:slTestimonials 65s linear infinite;will-change:transform;}
.sl-testimonial-track:hover{animation-play-state:paused;}
@keyframes slTestimonials{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.sl-contact-testimonial-card{width:360px;flex:0 0 360px;background:#fff;border:1px solid #dbeafe;border-radius:20px;padding:1.1rem;box-shadow:0 18px 42px rgba(37,99,235,.08);}
.sl-contact-testimonial-card .testimonial-text{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;font-size:.9rem;line-height:1.6;color:var(--text-soft);}
.sl-contact-testimonial-card .testimonial-text.expanded{display:block;}
.sl-contact-testimonial-card .testimonial-readmore{margin:.65rem 0 0;display:inline-flex;align-items:center;gap:.2rem;color:var(--accent);font-size:.78rem;font-weight:800;}
.sl-contact-testimonial-card footer{margin-top:.85rem;display:flex;flex-direction:column;gap:.1rem;}
.sl-contact-testimonial-card footer strong{font-size:.9rem;color:#111827;}
.sl-contact-testimonial-card footer span{font-size:.78rem;color:#64748b;}
@media(max-width:980px){.sl-contact-layout{grid-template-columns:1fr}.sl-company-card{position:static}.sl-contact-main{padding:2rem 0 3rem}.sl-contact-form-card{padding:.6rem}.sl-testimonial-marquee{overflow-x:auto;mask-image:none;-webkit-mask-image:none;padding-left:1rem;scrollbar-width:none}.sl-testimonial-marquee::-webkit-scrollbar{display:none}.sl-testimonial-track{animation:none;width:max-content;padding-right:1rem}.sl-contact-testimonial-card{width:82vw;max-width:360px}.sl-company-list>div{grid-template-columns:1fr;gap:.25rem}.sl-collab-box{display:block}.sl-collab-box>.material-symbols-rounded{margin-bottom:.75rem}}

/* ==================== Simple Look v1.0.3 refinements ==================== */
:root {
    --accent-rgb: 37,99,235;
    --accent-soft: rgba(var(--accent-rgb), .10);
    --accent-wash: rgba(var(--accent-rgb), .06);
}
.text-gradient,
.section-heading .accent,
.about-accent,
.logo-accent,
.blog-cat,
.portfolio-cat,
.blog-read,
.section-eyebrow { color: var(--accent) !important; }
.hero-badge,
.service-page-icon,
.service-highlight .material-symbols-rounded,
.benefit-item .material-symbols-rounded,
.dmcf-form .dmcf-service-card.is-selected,
.dmcf-form .dmcf-progress-bar span { color: var(--accent) !important; }
.hero-badge,
.service-page-icon,
.dmcf-form .dmcf-progress-bar,
.dmcf-form .dmcf-service-icon { background: var(--accent-soft) !important; }
.btn-primary,
.header-btn:hover,
.comp-tab.active,
.search-submit,
.pagination .current,
.nav-links .current { background: var(--accent) !important; border-color: var(--accent) !important; }
.btn-primary:hover { background: var(--accent-dark) !important; }
.entry-card:hover,
.portfolio-item:hover,
.blog-card:hover,
.pricing-card:hover { border-color: rgba(var(--accent-rgb), .32) !important; }
.faq { background: linear-gradient(180deg, rgba(var(--accent-rgb), .10) 0%, #fff 100%) !important; }
.service-faq { background: linear-gradient(180deg, rgba(var(--accent-rgb), .10) 0%, #fff 100%) !important; }
.sl-contact-testimonials { background: linear-gradient(180deg,#fff 0%, rgba(var(--accent-rgb), .10) 100%) !important; }

/* About rich text and one-line heading control. */
.about-title br { display: none !important; }
.about-copy p { font-size: .96rem !important; line-height: 1.78 !important; }
.about-copy p + p { margin-top: .8rem !important; }
.about-copy .about-lead { font-size: 1.02rem !important; color: var(--text) !important; }

/* Testimonials: only show read more when JS marks text as long. */
.testimonial-readmore { display: none; }
.testimonial-text[data-expandable] {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-text[data-expandable].expanded { display: block; }
.testimonial-text[data-expandable].is-short { display: block; overflow: visible; }
.sl-contact-testimonial-card .testimonial-readmore,
.testimonial-card .testimonial-readmore { align-items: center; gap: .25rem; }

/* Mobile offcanvas consistency. */
@media (max-width: 768px) {
    .header {
        top: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding: .62rem 15px !important;
        min-height: 62px !important;
    }
    body.admin-bar .header { top: 46px !important; }
    .offcanvas,
    .offcanvas-service {
        top: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    body.admin-bar .offcanvas,
    body.admin-bar .offcanvas-service {
        top: 46px !important;
        height: calc(100dvh - 46px) !important;
        min-height: calc(100dvh - 46px) !important;
    }
    .offcanvas-header {
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: .95rem 1rem !important;
        border-bottom: 1px solid var(--border-soft) !important;
        background: #fff !important;
    }
    .offcanvas-nav {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        padding: .55rem 1rem 1rem !important;
        gap: 0 !important;
    }
    .offcanvas-link {
        font-size: 1.28rem !important;
        padding: .75rem 0 !important;
        border-bottom: 1px solid var(--border-soft) !important;
    }
    .offcanvas-bottom {
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom)) !important;
        border-top: 1px solid var(--border-soft) !important;
        background: #fff !important;
        box-shadow: 0 -14px 36px rgba(15,23,42,.06) !important;
    }
    .offcanvas-cta { min-height: 46px !important; font-size: .88rem !important; }
    .offcanvas-socials { margin-top: .75rem !important; }
}

/* Archive/card image consistency. */
.entry-card-media,
.archive .entry-card-media,
.category .entry-card-media,
.tag .entry-card-media,
.search .entry-card-media {
    height: 210px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}
.entry-card-media img,
.archive .entry-card-media img,
.category .entry-card-media img,
.tag .entry-card-media img,
.search .entry-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
@media (max-width: 768px) {
    .entry-card-media,
    .archive .entry-card-media,
    .category .entry-card-media,
    .tag .entry-card-media,
    .search .entry-card-media { height: 190px !important; }
}

/* Richer service/pricing readability for subscription copy. */
.pricing-grid { align-items: stretch !important; }
.pricing-card { display: flex !important; flex-direction: column !important; }
.pricing-features { margin-top: 1rem !important; }
.pricing-features li { font-size: .9rem !important; line-height: 1.55 !important; }
.pricing-card .btn-details { margin-top: auto !important; }
.offcanvas-body .modal-desc { font-size: .95rem !important; line-height: 1.75 !important; }
.offcanvas-body .modal-list li { font-size: .9rem !important; line-height: 1.5 !important; }

/* Contact page testimonials and long text polish. */
.sl-contact-testimonial-card .testimonial-text { -webkit-line-clamp: 4 !important; }
.sl-contact-testimonial-card .testimonial-text.expanded { display: block !important; }
.sl-contact-testimonial-card .testimonial-text.is-short { display: block !important; overflow: visible !important; }

/* ==================== Simple Look v1.0.4 final polish ==================== */
:root { --accent-rgb: 37,99,235; }
.text-gradient,
.hero-accent-word,
.hero-rotating-text,
.section-heading .accent,
.section-title .accent,
.about-title .text-gradient,
.service-page-hero .accent,
.contact-page-hero .accent { color: var(--accent) !important; }
.btn-primary,
.header-btn,
.comp-tab.active,
.pricing-badge,
.portfolio-loadmore:hover,
.form-submit,
button[type="submit"] { background: var(--accent) !important; border-color: var(--accent) !important; }
.hero-badge,
.service-page-icon,
.service-icon-wrap,
.modal-icon-wrap,
.contact-benefits .material-symbols-rounded,
.benefit-item .material-symbols-rounded { color: var(--accent) !important; background-color: var(--accent-soft) !important; }
.faq { background: linear-gradient(180deg, rgba(var(--accent-rgb), .10), #fff 78%) !important; }
.pricing-featured { border-color: var(--accent) !important; box-shadow: var(--shadow-md), 0 0 0 5px rgba(var(--accent-rgb), .10) !important; }

.about-title { max-width: 1040px !important; }
.about-title .text-gradient { white-space: nowrap; }

.logo { position: relative; }
.logo-tagline {
    left: 50% !important;
    top: calc(100% + 9px) !important;
    transform: translate(-50%, -5px) !important;
    z-index: 120 !important;
}
.logo:hover .logo-tagline,
.logo:focus-visible .logo-tagline { transform: translate(-50%, 0) !important; }
.header .logo-tagline { white-space: nowrap !important; }

.offcanvas,
.offcanvas-service {
    padding: 0 !important;
    width: min(430px, 100vw) !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}
.offcanvas-header {
    margin: 0 !important;
    padding: 1.35rem 1.35rem 1rem !important;
    border-bottom: 1px solid var(--border) !important;
    flex-shrink: 0 !important;
}
.offcanvas-nav {
    padding: 1rem 1.35rem !important;
    gap: .15rem !important;
    overflow-y: auto !important;
    min-height: 0 !important;
}
.offcanvas-link {
    padding: .82rem 0 !important;
    font-size: clamp(1.18rem, 5vw, 1.55rem) !important;
    line-height: 1.1 !important;
}
.offcanvas-bottom {
    margin-top: auto !important;
    padding: 1rem 1.35rem 1.35rem !important;
    border-top: 1px solid var(--border) !important;
    gap: .9rem !important;
    background: linear-gradient(180deg, rgba(255,255,255,.92), #fff) !important;
    flex-shrink: 0 !important;
}
.offcanvas-cta { width: 100% !important; }
.offcanvas-socials { justify-content: center !important; }
.offcanvas-service .offcanvas-body { padding: 1.25rem 1.35rem 1.35rem !important; overflow-y: auto !important; min-height: 0 !important; }
.service-nav-btns { gap: .45rem !important; }
.service-nav-btn { padding: .55rem .75rem !important; font-size: .78rem !important; }

.entry-card-media,
.archive .entry-card-media,
.category .entry-card-media,
.tag .entry-card-media,
.search .entry-card-media {
    height: 235px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    background: #eef4ff !important;
}
.entry-card-media img,
.archive .entry-card-media img,
.category .entry-card-media img,
.tag .entry-card-media img,
.search .entry-card-media img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; }
.pricing-card { min-height: 100% !important; }
.pricing-desc { font-size: .92rem !important; line-height: 1.6 !important; }
.pricing-features li { font-size: .88rem !important; line-height: 1.5 !important; }
.modal-list li { line-height: 1.55 !important; }

.service-card p { min-height: 4.8em; }
.offcanvas-body .modal-desc { flex: 0 0 auto !important; }
.offcanvas-body .modal-list { gap: .62rem !important; }

@media (max-width: 900px) {
    .header { top: 0 !important; }
    .home .header { top: 0 !important; }
    body.admin-bar .header { top: 46px !important; }
    .about-title .text-gradient { white-space: normal; }
    .entry-card-media,
    .archive .entry-card-media,
    .category .entry-card-media,
    .tag .entry-card-media,
    .search .entry-card-media { height: 190px !important; }
    .offcanvas-link::after { display: none !important; }
}

/* Simple Look v1.0.5 - homepage header parity fix
   Keep homepage header visually identical to inner pages: pill + border before scroll,
   then compact full-width bar after scrolling. */
@media (min-width: 901px) {
    body.home .header:not(.scrolled) {
        top: 1.5rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: min(95%, 1200px) !important;
        padding: 0.7rem 1.5rem !important;
        border: 1px solid rgba(0,0,0,0.06) !important;
        border-radius: 100px !important;
        background: rgba(255,255,255,0.72) !important;
        box-shadow: none !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
    body.admin-bar.home .header:not(.scrolled) {
        top: calc(1.5rem + 32px) !important;
    }
    body.home .header.scrolled {
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        padding: 0.72rem max(1rem, calc((100vw - 1200px) / 2 + 1rem)) !important;
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-top: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        background: rgba(255,255,255,0.94) !important;
        box-shadow: 0 1px 0 rgba(0,0,0,0.05) !important;
    }
    body.admin-bar.home .header.scrolled {
        top: 32px !important;
    }
}
@media (max-width: 900px) {
    body.home .header,
    body.home .header.scrolled {
        left: 0 !important;
        transform: none !important;
        top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-top: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        background: rgba(255,255,255,0.94) !important;
    }
    body.admin-bar.home .header,
    body.admin-bar.home .header.scrolled {
        top: 46px !important;
    }
}

/* SimpleLook v1.0.7: all brand colors are driven by CSS variables from Simple Look -> Podešavanje sajta. */

/* SimpleLook v1.0.8: reliable imported demo content display */
.process-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin: 0 auto 0.85rem;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    position: relative;
    z-index: 1;
}
.process-card-icon .material-symbols-rounded { font-size: 1.25rem; }
.process-card { padding-top: 1.35rem; }
.process-card h3 { margin-top: 0; }

.service-card .service-list {
    display: flex !important;
    margin-top: 0.85rem;
}
.service-card .service-list li {
    align-items: flex-start;
    line-height: 1.42;
}

.comparison-panel.active .comp-col li,
.pricing-card .pricing-features li {
    min-height: 0;
}

/* cleaner mobile offcanvas: not glued to edges */
@media (max-width: 768px) {
    .offcanvas {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 1.15rem 1rem calc(1rem + env(safe-area-inset-bottom)) !important;
    }
    .offcanvas-header {
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid var(--border-soft);
    }
    .offcanvas-link {
        padding: 0.85rem 0.15rem !important;
        font-size: 1.2rem !important;
        line-height: 1.15 !important;
    }
    .offcanvas-bottom {
        margin-top: auto;
        padding-top: 1rem !important;
        gap: 1rem !important;
    }
    .offcanvas-cta {
        min-height: 48px;
    }
    .offcanvas-socials {
        padding-bottom: 0.35rem;
    }
}

/* ==================== v1.0.9 pricing billing switch ==================== */
.pricing-switch {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 2.2rem;
    padding: .32rem;
    display: inline-flex;
    gap: .25rem;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.pricing .container { text-align: center; }
.pricing-switch-btn {
    min-width: 132px;
    min-height: 42px;
    padding: .65rem 1.2rem;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 800;
    font-size: .88rem;
    line-height: 1;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.pricing-switch-btn.active {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 10px 26px rgba(var(--accent-rgb), .22);
}
.pricing-card.pricing-hidden { display: none !important; }
.pricing-grid { text-align: left; }
.pricing-price .price-period {
    display: block;
    margin-top: .2rem;
    font-family: var(--font-body);
    font-size: .78rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--text-muted) !important;
    letter-spacing: .02em;
    text-transform: lowercase;
}
.pricing-card .pricing-note-small {
    margin-top: .75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: .76rem;
    line-height: 1.35;
}
@media (max-width: 768px) {
    .pricing-switch { width: 100%; }
    .pricing-switch-btn { flex: 1; min-width: 0; }
}

/* SimpleLook v1.0.11 pricing clarity */
.pricing-disclaimer {
    max-width: 760px;
    margin: -0.65rem auto 1.6rem;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.6;
}
.pricing-switch {
    margin-bottom: 1rem;
}
.pricing-card {
    text-align: left;
}
.pricing-card .pricing-header,
.pricing-card .btn-block,
.pricing-card .pricing-note-small {
    text-align: center;
}
.pricing-header h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.pricing-label-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0.28rem 0.65rem;
    margin: 0.25rem auto 0.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pricing-contract-note {
    margin: 0.75rem 0 0;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.76rem;
    line-height: 1.45;
    text-align: left;
}
.pricing-price .pricing-range-kicker {
    font-size: 0.72rem !important;
    line-height: 1.1 !important;
    letter-spacing: .12em !important;
}
.pricing-price .price-line {
    justify-content: center;
}
.pricing-note-small {
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .pricing-card { text-align: left; }
    .pricing-disclaimer { font-size: 0.8rem; margin-bottom: 1.2rem; }
    .pricing-header h3 { font-size: 1.1rem; }
}


/* ==================== SimpleLook v1.0.13 final pricing/footer cleanup ==================== */
.pricing-card .pricing-contract-note {
    display: block !important;
    margin: .75rem 0 0 !important;
    padding: .72rem .8rem !important;
    border-radius: 12px !important;
    background: rgba(var(--accent-rgb), .045) !important;
    border: 1px solid rgba(var(--accent-rgb), .14) !important;
    color: var(--text-soft) !important;
    font-size: .78rem !important;
    line-height: 1.5 !important;
}
.footer-bottom,
.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,.68) !important;
}
.footer-links.footer-link-list a {
    position: relative;
    padding-left: .85rem;
}
.footer-links.footer-link-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.58);
}
.footer-contact span,
.footer-contact a { color: rgba(226,232,240,.78) !important; }
.footer-socials {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    align-items: center;
    flex-wrap: wrap;
}
.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-grid !important;
    place-items: center;
    padding: 0 !important;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff !important;
    font-weight: 800;
    font-size: .72rem !important;
    line-height: 1 !important;
}
.footer-social-link::before { display: none !important; }
.footer-social-link:hover { background: var(--accent) !important; border-color: var(--accent) !important; }


/* v1.0.14 project hub */
.portfolio-single-hero .section-eyebrow,
.portfolio-archive-hero .section-eyebrow{display:inline-flex;align-items:center;gap:.45rem}
.portfolio-single-actions{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;margin-top:1.25rem}
.demo-browser-shell{overflow:hidden;border:1px solid var(--border-soft);border-radius:22px;background:#0b1020;box-shadow:0 26px 70px rgba(15,23,42,.16)}
.demo-browser-bar{height:54px;display:flex;align-items:center;gap:.55rem;padding:0 1rem;border-bottom:1px solid rgba(255,255,255,.12);color:#fff;background:#101827}
.demo-browser-bar strong{margin-left:.5rem;font-size:.9rem}.demo-browser-bar a{margin-left:auto;color:#fff;display:inline-flex;align-items:center;gap:.25rem;font-weight:700;font-size:.82rem}
.demo-dot{width:10px;height:10px;border-radius:99px;background:#94a3b8}.demo-dot:nth-child(1){background:#ef4444}.demo-dot:nth-child(2){background:#f59e0b}.demo-dot:nth-child(3){background:#22c55e}
.demo-browser-shell iframe{display:block;width:100%;height:min(780px,78vh);border:0;background:#fff}
.archive-portfolio-tax-filters{justify-content:center;margin-bottom:1.5rem}.archive-portfolio-tax-filters .filter-btn{text-decoration:none}
@media (max-width:768px){.portfolio-single-actions{flex-direction:column}.demo-browser-bar{height:auto;min-height:54px;flex-wrap:wrap}.demo-browser-bar a{margin-left:0}.demo-browser-shell iframe{height:70vh}}

/* ==================== SimpleLook v1.0.15 thumbnail fit cleanup ==================== */
.site-card,
.hero-site-card,
.sites-grid-showcase .site-card,
.sites-grid-showcase .hero-site-card,
.portfolio-item .portfolio-thumb,
.archive-portfolio-grid .portfolio-thumb,
.entry-card-media,
.single-related-grid .entry-card-media {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft, #f3f4f6);
}
.site-card img,
.hero-site-card img,
.sites-grid-showcase .site-card img,
.sites-grid-showcase .hero-site-card img,
.portfolio-thumb img,
.portfolio-item .portfolio-thumb img,
.archive-portfolio-grid .portfolio-thumb img,
.entry-card-media img,
.single-related-grid .entry-card-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
    object-position: top center !important;
}
.portfolio-thumb,
.archive-portfolio-grid .portfolio-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 0;
}
.portfolio-item:hover .portfolio-thumb img,
.archive-portfolio-grid .portfolio-item:hover .portfolio-thumb img {
    transform: none !important;
    filter: brightness(1.06) contrast(1.02);
}
.entry-card-media {
    height: 230px !important;
    aspect-ratio: auto !important;
}
@media (max-width: 1024px) {
    .entry-card-media { height: 210px !important; }
}
@media (max-width: 768px) {
    .site-card,
    .hero-site-card,
    .sites-grid-showcase .site-card,
    .sites-grid-showcase .hero-site-card {
        aspect-ratio: 16 / 10;
    }
    .portfolio-thumb,
    .archive-portfolio-grid .portfolio-thumb,
    .entry-card-media { height: 190px !important; aspect-ratio: auto !important; }
}

/* ==================== SimpleLook v1.0.16 portfolio/case study polish ==================== */
body.home .header {
    top: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(95%, 1200px) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 100px !important;
    box-shadow: none !important;
    padding: 0.7rem 1.5rem !important;
    background: rgba(255,255,255,0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
body.home .header.scrolled {
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    background: rgba(255,255,255,0.92) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05) !important;
}
body.admin-bar.home .header { top: calc(1.5rem + 32px) !important; }
body.admin-bar.home .header.scrolled { top: 32px !important; }

.portfolio-single-hero { position: relative; overflow: hidden; }
.portfolio-single-hero .section-eyebrow { display: inline-flex; align-items: center; gap: .38rem; }
.portfolio-single-hero h1 { max-width: 980px; margin-left: auto; margin-right: auto; }
.portfolio-single-hero p strong { color: var(--text); font-weight: 800; }
.portfolio-single-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.3rem; }

.portfolio-single-featured {
    max-width: 1040px !important;
    margin: -1.2rem auto 2.5rem !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 22px 70px rgba(15,23,42,.12) !important;
    background: var(--bg-soft) !important;
}
.portfolio-single-featured img {
    width: 100% !important;
    height: min(400px, 42vw) !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}
.portfolio-case-content { padding-top: 1rem !important; }
.portfolio-single-content { max-width: 840px !important; }

.portfolio-share {
    max-width: 840px;
    margin: 2rem auto 0;
    padding: .85rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.portfolio-share > span {
    font-size: .78rem;
    font-weight: 800;
    color: var(--text-soft);
    margin-right: .25rem;
}
.portfolio-share a,
.portfolio-share button {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: 0 .8rem;
    font-size: .74rem;
    font-weight: 900;
    transition: all .2s ease;
}
.portfolio-share a:hover,
.portfolio-share button:hover {
    transform: translateY(-1px);
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.portfolio-copy-link .material-symbols-rounded { font-size: 1rem; }
.portfolio-copy-link em { font-style: normal; }

.portfolio-adjacent {
    max-width: 980px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}
.portfolio-adjacent-card {
    display: grid;
    grid-template-columns: 132px minmax(0,1fr);
    gap: 1rem;
    align-items: center;
    padding: .75rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .22s ease;
}
.portfolio-adjacent-card:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.portfolio-adjacent-media {
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    color: var(--accent);
}
.portfolio-adjacent-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.portfolio-adjacent-copy { min-width: 0; display: grid; gap: .22rem; }
.portfolio-adjacent-copy small {
    color: var(--accent);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}
.portfolio-adjacent-copy strong {
    color: var(--text);
    font-size: .98rem;
    line-height: 1.2;
}
.portfolio-adjacent-copy em {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: var(--text-soft);
    font-style: normal;
    font-size: .78rem;
    font-weight: 700;
}
.portfolio-adjacent-copy .material-symbols-rounded { font-size: .9rem; }

.portfolio-sticky-contact {
    position: fixed;
    right: 1.2rem;
    top: 50%;
    z-index: 90;
    transform: translate(20px,-50%);
    opacity: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: 40px minmax(0,1fr);
    gap: .7rem;
    align-items: center;
    width: 245px;
    padding: .8rem .9rem;
    border: 1px solid rgba(37,99,235,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 70px rgba(15,23,42,.15);
    transition: all .25s ease;
}
.portfolio-sticky-contact.is-visible {
    transform: translate(0,-50%);
    opacity: 1;
    pointer-events: auto;
}
.portfolio-sticky-contact .material-symbols-rounded {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
}
.portfolio-sticky-contact strong { color: var(--text); font-size: .86rem; line-height: 1.1; }
.portfolio-sticky-contact small { color: var(--text-soft); font-size: .68rem; line-height: 1.2; }

@media (max-width: 1180px) {
    .portfolio-single-featured img { height: 350px !important; }
    .portfolio-sticky-contact { right: .75rem; width: 218px; }
}
@media (max-width: 900px) {
    .portfolio-single-featured img { height: 300px !important; }
    .portfolio-adjacent { grid-template-columns: 1fr; }
    .portfolio-sticky-contact {
        top: auto;
        right: 1rem;
        bottom: 1rem;
        transform: translateY(16px);
        width: min(340px, calc(100vw - 2rem));
    }
    .portfolio-sticky-contact.is-visible { transform: translateY(0); }
}
@media (max-width: 782px) {
    body.admin-bar.home .header { top: calc(.5rem + 46px) !important; }
    body.admin-bar.home .header.scrolled { top: 46px !important; }
}
@media (max-width: 768px) {
    body.home .header {
        top: .5rem !important;
        width: calc(100% - 30px) !important;
        padding: .5rem 1rem !important;
        border-radius: 100px !important;
    }
    body.home .header.scrolled {
        top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
    }
    .portfolio-single-featured { border-radius: 18px !important; margin-top: -0.5rem !important; }
    .portfolio-single-featured img { height: 250px !important; }
    .portfolio-share { justify-content: flex-start; }
    .portfolio-share > span { width: 100%; }
    .portfolio-adjacent-card { grid-template-columns: 104px minmax(0,1fr); gap: .75rem; }
    .portfolio-adjacent-media { height: 78px; }
}

/* ==================== SimpleLook v1.0.17 case study polish ==================== */
.sl-contact-title {
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(2.45rem, 6.2vw, 5rem) !important;
    line-height: .95 !important;
    letter-spacing: -0.055em !important;
}
.sl-contact-title span {
    display: block !important;
    color: var(--accent) !important;
    -webkit-text-fill-color: var(--accent) !important;
}
.portfolio-media-container { position: relative; }
.portfolio-lightbox-stack {
    position: relative !important;
    isolation: isolate !important;
}
.portfolio-lightbox-stack.has-gallery::before,
.portfolio-lightbox-stack.has-gallery::after {
    content: '' !important;
    position: absolute !important;
    inset: 16px 18px -14px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.78) !important;
    border: 1px solid rgba(var(--accent-rgb), .12) !important;
    box-shadow: 0 16px 45px rgba(15,23,42,.08) !important;
    z-index: -1 !important;
}
.portfolio-lightbox-stack.has-gallery::after {
    inset: 30px 34px -26px !important;
    opacity: .55 !important;
}
.portfolio-featured-lightbox {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: zoom-in !important;
    color: inherit !important;
}
.portfolio-featured-lightbox::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, transparent 45%, rgba(15,23,42,.42) 100%) !important;
    opacity: .72 !important;
    pointer-events: none !important;
}
.portfolio-lightbox-badge {
    position: absolute !important;
    right: 1rem !important;
    bottom: 1rem !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .38rem !important;
    height: 40px !important;
    padding: 0 .82rem !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.94) !important;
    color: var(--text) !important;
    font-size: .76rem !important;
    font-weight: 900 !important;
    box-shadow: 0 16px 42px rgba(15,23,42,.18) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.portfolio-lightbox-badge .material-symbols-rounded { font-size: 1rem !important; color: var(--accent) !important; }
.portfolio-gallery-strip {
    max-width: 1040px !important;
    margin: -1.4rem auto 2.8rem !important;
    display: flex !important;
    gap: .7rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 2 !important;
}
.portfolio-gallery-thumb {
    width: 92px !important;
    height: 66px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255,255,255,.9) !important;
    box-shadow: 0 12px 30px rgba(15,23,42,.14) !important;
    background: #fff !important;
    transition: transform .18s ease, border-color .18s ease !important;
}
.portfolio-gallery-thumb:hover,
.portfolio-gallery-thumb.is-active {
    transform: translateY(-2px) !important;
    border-color: var(--accent) !important;
}
.portfolio-gallery-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}
.portfolio-single-content {
    font-size: 1rem !important;
    line-height: 1.82 !important;
    color: var(--text-soft) !important;
}
.portfolio-single-content h2,
.portfolio-single-content h3,
.portfolio-single-content h4 {
    color: var(--text) !important;
    letter-spacing: -.025em !important;
    margin-top: 2rem !important;
    margin-bottom: .7rem !important;
}
.portfolio-single-content ul,
.portfolio-single-content ol {
    display: grid !important;
    gap: .65rem !important;
    margin: 1.1rem 0 1.4rem !important;
    padding: 1rem 1.1rem !important;
    border: 1px solid rgba(var(--accent-rgb), .12) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #fff 0%, rgba(var(--accent-rgb), .035) 100%) !important;
    box-shadow: 0 14px 38px rgba(15,23,42,.04) !important;
    list-style: none !important;
    counter-reset: sl-list !important;
}
.portfolio-single-content li {
    position: relative !important;
    padding-left: 2rem !important;
    color: var(--text-soft) !important;
}
.portfolio-single-content ul li::before {
    content: 'check' !important;
    font-family: 'Material Symbols Rounded' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    position: absolute !important;
    left: 0 !important;
    top: .28rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(var(--accent-rgb), .10) !important;
    color: var(--accent) !important;
}
.portfolio-single-content ol li { counter-increment: sl-list !important; }
.portfolio-single-content ol li::before {
    content: counter(sl-list) !important;
    position: absolute !important;
    left: 0 !important;
    top: .12rem !important;
    width: 1.35rem !important;
    height: 1.35rem !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: var(--accent) !important;
    color: #fff !important;
    font-size: .68rem !important;
    font-weight: 900 !important;
}
.portfolio-share a,
.portfolio-share button {
    min-width: 46px !important;
    gap: .35rem !important;
}
.portfolio-share a::first-letter { text-transform: uppercase; }
.portfolio-sticky-contact {
    grid-template-columns: 42px minmax(0,1fr) !important;
    width: 258px !important;
    padding: .88rem .95rem !important;
}
.portfolio-sticky-contact small { max-width: 155px !important; }
.sl-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(1rem, 4vw, 3rem) !important;
    background: rgba(2,6,23,.86) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.sl-lightbox.active { display: flex !important; }
.sl-lightbox-figure {
    width: min(1120px, 100%) !important;
    max-height: 86vh !important;
    margin: 0 !important;
    display: grid !important;
    gap: .75rem !important;
    justify-items: center !important;
}
.sl-lightbox-figure img {
    max-width: 100% !important;
    max-height: calc(86vh - 3rem) !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 100px rgba(0,0,0,.45) !important;
    background: #fff !important;
}
.sl-lightbox-figure figcaption { color: rgba(255,255,255,.76) !important; font-size: .82rem !important; font-weight: 800 !important; }
.sl-lightbox-close,
.sl-lightbox-nav {
    position: absolute !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    border-radius: 999px !important;
    width: 46px !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    cursor: pointer !important;
}
.sl-lightbox-close { top: 1rem !important; right: 1rem !important; }
.sl-lightbox-prev { left: 1rem !important; top: 50% !important; transform: translateY(-50%) !important; }
.sl-lightbox-next { right: 1rem !important; top: 50% !important; transform: translateY(-50%) !important; }
.sl-lightbox-close:hover,
.sl-lightbox-nav:hover { background: var(--accent) !important; border-color: var(--accent) !important; }
@media (max-width: 1180px) {
    .portfolio-gallery-strip { margin-top: -1rem !important; }
}
@media (max-width: 768px) {
    .sl-contact-title { font-size: clamp(2.15rem, 12vw, 3.6rem) !important; }
    .portfolio-lightbox-badge { right: .75rem !important; bottom: .75rem !important; height: 36px !important; font-size: .7rem !important; }
    .portfolio-gallery-strip { justify-content: flex-start !important; flex-wrap: nowrap !important; overflow-x: auto !important; margin: -1rem auto 2rem !important; padding: 0 .2rem .2rem !important; scrollbar-width: none !important; }
    .portfolio-gallery-strip::-webkit-scrollbar { display: none !important; }
    .portfolio-gallery-thumb { flex: 0 0 78px !important; width: 78px !important; height: 58px !important; }
    .portfolio-single-content { font-size: .95rem !important; line-height: 1.75 !important; }
    .portfolio-single-content ul,
    .portfolio-single-content ol { padding: .9rem !important; border-radius: 16px !important; }
    .portfolio-share { justify-content: center !important; }
    .portfolio-share > span { text-align: center !important; }
    .sl-lightbox { padding: .75rem !important; }
    .sl-lightbox-nav { width: 40px !important; height: 40px !important; }
    .sl-lightbox-prev { left: .5rem !important; }
    .sl-lightbox-next { right: .5rem !important; }
}

/* ==================== SimpleLook v1.0.18 header + sticky contact fix ==================== */
body.home .header,
body.home .header:not(.scrolled) {
    top: 1.5rem !important;
    left: 50% !important;
    right: auto !important;
    width: min(95%, 1200px) !important;
    transform: translateX(-50%) !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    border-radius: 999px !important;
    padding: .7rem 1.5rem !important;
    background: rgba(255,255,255,.74) !important;
    box-shadow: none !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
body.home .header.scrolled {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    border-radius: 0 !important;
    border-width: 0 0 1px 0 !important;
    border-style: solid !important;
    border-color: rgba(0,0,0,.07) !important;
    padding: .72rem max(1.25rem, calc((100vw - 1200px) / 2 + 1rem)) !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 1px 0 rgba(15,23,42,.04), 0 14px 34px rgba(15,23,42,.035) !important;
}
body.admin-bar.home .header:not(.scrolled) { top: calc(1.5rem + 32px) !important; }
body.admin-bar.home .header.scrolled { top: 32px !important; }

.portfolio-sticky-contact {
    right: 1.5rem !important;
    bottom: auto !important;
    top: 50% !important;
    width: 312px !important;
    min-height: 92px !important;
    padding: 1rem 1.05rem !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: .8rem !important;
    row-gap: .22rem !important;
    align-items: center !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.92) !important;
    border: 1px solid rgba(var(--accent-rgb), .22) !important;
    box-shadow: 0 18px 55px rgba(15,23,42,.12) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}
.portfolio-sticky-contact .material-symbols-rounded {
    grid-row: 1 / span 2 !important;
    width: 46px !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 14px !important;
    background: var(--accent) !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    box-shadow: 0 10px 26px rgba(var(--accent-rgb), .22) !important;
}
.portfolio-sticky-contact strong {
    display: block !important;
    color: var(--text) !important;
    font-size: .95rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -.015em !important;
    white-space: normal !important;
}
.portfolio-sticky-contact small {
    display: block !important;
    max-width: none !important;
    color: var(--text-soft) !important;
    font-size: .78rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}
.portfolio-sticky-contact:hover {
    border-color: rgba(var(--accent-rgb), .42) !important;
    box-shadow: 0 22px 70px rgba(15,23,42,.16) !important;
    transform: translateY(-50%) translateX(-4px) !important;
}
.portfolio-sticky-contact.is-visible { transform: translateY(-50%) !important; }
.portfolio-sticky-contact.is-visible:hover { transform: translateY(-50%) translateX(-4px) !important; }

@media (max-width: 1024px) {
    .portfolio-sticky-contact {
        top: auto !important;
        right: 1rem !important;
        bottom: 1rem !important;
        width: min(360px, calc(100vw - 2rem)) !important;
        transform: translateY(140%) !important;
    }
    .portfolio-sticky-contact.is-visible { transform: translateY(0) !important; }
    .portfolio-sticky-contact:hover,
    .portfolio-sticky-contact.is-visible:hover { transform: translateY(0) !important; }
}
@media (max-width: 768px) {
    body.home .header,
    body.home .header:not(.scrolled),
    body.home .header.scrolled {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        transform: none !important;
        border-radius: 0 !important;
        border-width: 0 0 1px 0 !important;
        padding: .72rem 1rem !important;
        background: rgba(255,255,255,.96) !important;
    }
    body.admin-bar.home .header,
    body.admin-bar.home .header:not(.scrolled),
    body.admin-bar.home .header.scrolled { top: 46px !important; }
    .portfolio-sticky-contact {
        grid-template-columns: 42px minmax(0,1fr) !important;
        min-height: 78px !important;
        border-radius: 18px !important;
        padding: .82rem .9rem !important;
    }
    .portfolio-sticky-contact .material-symbols-rounded {
        width: 42px !important;
        height: 42px !important;
        border-radius: 13px !important;
    }
    .portfolio-sticky-contact strong { font-size: .88rem !important; }
    .portfolio-sticky-contact small { font-size: .72rem !important; line-height: 1.28 !important; }
}


/* ==================== SimpleLook v1.0.19 definitive unified header ==================== */
@media (min-width: 901px) {
    body .header,
    body.home .header,
    body.home .header:not(.scrolled) {
        position: fixed !important;
        top: 1.5rem !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(95%, 1200px) !important;
        max-width: 1200px !important;
        padding: .7rem 1.5rem !important;
        border: 1px solid rgba(0,0,0,.06) !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.74) !important;
        box-shadow: none !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        transition: top .25s ease, left .25s ease, right .25s ease, width .25s ease, max-width .25s ease, transform .25s ease, border-radius .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease !important;
    }
    body .header.scrolled,
    body.home .header.scrolled {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        padding: .7rem 1.5rem !important;
        border-radius: 0 !important;
        border-width: 0 0 1px 0 !important;
        border-style: solid !important;
        border-color: rgba(0,0,0,.07) !important;
        background: rgba(255,255,255,.96) !important;
        box-shadow: 0 1px 0 rgba(15,23,42,.04) !important;
    }
    body.admin-bar .header,
    body.admin-bar.home .header,
    body.admin-bar.home .header:not(.scrolled) {
        top: calc(1.5rem + 32px) !important;
    }
    body.admin-bar .header.scrolled,
    body.admin-bar.home .header.scrolled {
        top: 32px !important;
    }
}
@media (max-width: 900px) {
    body .header,
    body .header.scrolled,
    body.home .header,
    body.home .header:not(.scrolled),
    body.home .header.scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        padding: .72rem 1rem !important;
        border-radius: 0 !important;
        border-width: 0 0 1px 0 !important;
        border-style: solid !important;
        border-color: rgba(0,0,0,.07) !important;
        background: rgba(255,255,255,.96) !important;
        box-shadow: 0 1px 0 rgba(15,23,42,.04) !important;
    }
    body.admin-bar .header,
    body.admin-bar .header.scrolled,
    body.admin-bar.home .header,
    body.admin-bar.home .header:not(.scrolled),
    body.admin-bar.home .header.scrolled {
        top: 46px !important;
    }
}

/* ==================== SimpleLook v1.0.20 project card + Elementor polish ==================== */
.portfolio-grid .portfolio-item,
.archive-portfolio-grid .portfolio-item {
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.10) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    min-height: 100% !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.045) !important;
}
.portfolio-grid .portfolio-item:hover,
.archive-portfolio-grid .portfolio-item:hover {
    transform: translateY(-2px) !important;
    border-color: var(--accent-border) !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08) !important;
}
.portfolio-grid .portfolio-thumb,
.archive-portfolio-grid .portfolio-thumb {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    background: linear-gradient(135deg, #eef4ff, #fff) !important;
}
.portfolio-grid .portfolio-thumb img,
.archive-portfolio-grid .portfolio-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    transform: none !important;
    filter: none !important;
    image-rendering: auto !important;
}
.portfolio-grid .portfolio-item:hover .portfolio-thumb img,
.archive-portfolio-grid .portfolio-item:hover .portfolio-thumb img {
    transform: none !important;
    filter: brightness(1.06) saturate(1.02) !important;
}
.portfolio-grid .portfolio-thumb .material-symbols-rounded,
.archive-portfolio-grid .portfolio-thumb .material-symbols-rounded {
    width: 38px !important;
    height: 38px !important;
    bottom: 0.82rem !important;
    right: 0.82rem !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.94) !important;
    border: 1px solid rgba(37,99,235,0.12) !important;
    box-shadow: 0 12px 30px rgba(15,23,42,0.16) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
.portfolio-grid .portfolio-info,
.archive-portfolio-grid .portfolio-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    padding: 1.05rem 1.12rem 1rem !important;
}
.portfolio-grid .portfolio-cat,
.archive-portfolio-grid .portfolio-cat {
    margin-bottom: 0.35rem !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
}
.portfolio-grid .portfolio-info h3,
.archive-portfolio-grid .portfolio-info h3 {
    font-size: 1rem !important;
    line-height: 1.18 !important;
    margin: 0 0 0.42rem !important;
    letter-spacing: -0.02em !important;
}
.portfolio-grid .portfolio-info p,
.archive-portfolio-grid .portfolio-info p {
    color: color-mix(in srgb, var(--text-soft) 84%, #ffffff 16%) !important;
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    margin: 0 0 0.7rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.portfolio-metrics {
    margin-top: 0.2rem !important;
    margin-bottom: 0.65rem !important;
}
.portfolio-view-link {
    margin-top: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.32rem !important;
    color: var(--accent) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    align-self: flex-end !important;
}
.portfolio-view-link .material-symbols-rounded {
    font-size: 1rem !important;
}
.elementor-cta p {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
}
.elementor-slide img {
    object-fit: cover !important;
    object-position: top center !important;
}
@media (max-width: 768px) {
    .portfolio-grid .portfolio-thumb,
    .archive-portfolio-grid .portfolio-thumb {
        aspect-ratio: 16 / 10 !important;
    }
    .portfolio-grid .portfolio-info,
    .archive-portfolio-grid .portfolio-info {
        padding: 0.95rem !important;
    }
    .portfolio-grid .portfolio-info p,
    .archive-portfolio-grid .portfolio-info p {
        font-size: 0.82rem !important;
    }
    .elementor-cta p {
        font-size: 0.82rem !important;
    }
}

/* ==================== SimpleLook v1.0.22 mobile readability polish ==================== */
@media (max-width: 900px) {
    .brand-logo-header img,
    .header .brand-logo img {
        height: clamp(24px, 7vw, 31px) !important;
        max-width: 142px !important;
    }
    .header .logo { max-width: 150px !important; min-width: 0 !important; }
    .offcanvas .brand-logo img { height: 30px !important; max-width: 150px !important; }
}

@media (max-width: 768px) {
    body { font-size: 16.5px !important; }
    .container { width: min(100% - 30px, 1200px) !important; }

    .hero-title {
        font-size: clamp(2.4rem, 10.5vw, 3.35rem) !important;
        line-height: .98 !important;
        letter-spacing: -.055em !important;
    }
    .hero-sub {
        font-size: 1.02rem !important;
        line-height: 1.62 !important;
        max-width: 780px !important;
    }

    .section-header { margin-bottom: 1.45rem !important; }
    .section-heading {
        font-size: clamp(2.05rem, 9.6vw, 2.72rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -.045em !important;
    }
    .section-sub {
        font-size: 1rem !important;
        line-height: 1.58 !important;
        max-width: 620px !important;
    }
    .section-eyebrow {
        font-size: .78rem !important;
        line-height: 1.2 !important;
    }

    .about,
    .services,
    .comparison,
    .elementor,
    .portfolio,
    .testimonials,
    .blog,
    .pricing,
    .contact {
        padding-top: 3.15rem !important;
        padding-bottom: 3.15rem !important;
    }
    .process,
    .faq {
        padding-top: 2.65rem !important;
        padding-bottom: 2.65rem !important;
    }

    .about-title {
        font-size: clamp(2.05rem, 9.8vw, 2.72rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -.045em !important;
    }
    .about-copy p,
    .about-text {
        font-size: 1rem !important;
        line-height: 1.72 !important;
    }
    .about-quote p { font-size: .96rem !important; line-height: 1.55 !important; }

    .services .section-heading,
    .process .section-heading,
    .comparison .section-heading,
    .portfolio .section-heading,
    .testimonials .section-heading,
    .pricing .section-heading,
    .faq .section-heading {
        font-size: clamp(2.12rem, 9.8vw, 2.82rem) !important;
    }

    .services-grid { gap: .85rem !important; }
    .service-card {
        padding: 1.08rem !important;
        border-radius: 16px !important;
    }
    .service-icon-wrap { width: 42px !important; height: 42px !important; border-radius: 13px !important; }
    .service-card h3 {
        font-size: 1.14rem !important;
        line-height: 1.18 !important;
        margin-bottom: .45rem !important;
    }
    .service-card > p {
        font-size: .98rem !important;
        line-height: 1.55 !important;
        min-height: auto !important;
    }
    .service-card .service-list { gap: .45rem !important; }
    .service-card .service-list li {
        font-size: .94rem !important;
        line-height: 1.45 !important;
    }

    .process-grid { gap: .75rem !important; }
    .process-card {
        padding: 1.05rem .85rem !important;
        min-height: 160px !important;
        border-radius: 15px !important;
    }
    .process-card-num { font-size: 2.45rem !important; }
    .process-card h3 { font-size: 1.07rem !important; line-height: 1.18 !important; }
    .process-card p { font-size: .92rem !important; line-height: 1.48 !important; }

    .comparison-tabs { gap: .45rem !important; }
    .comp-tab { font-size: .88rem !important; padding: .6rem .85rem !important; }
    .comp-col li { font-size: .95rem !important; line-height: 1.5 !important; }

    .elementor-copy .section-header,
    .elementor-copy .section-heading,
    .elementor-copy .section-sub,
    .elementor-text,
    .elementor-text p {
        text-align: center !important;
    }
    .elementor-copy .section-heading,
    .elementor-copy h2 {
        font-size: clamp(1.78rem, 8.3vw, 2.25rem) !important;
        line-height: 1.08 !important;
    }
    .elementor-text p {
        font-size: .96rem !important;
        line-height: 1.65 !important;
    }
    .elementor-cta {
        text-align: center !important;
        align-items: center !important;
    }
    .elementor-cta p {
        text-align: center !important;
        font-size: .94rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    .elementor-monitor-screen { min-height: 220px !important; }

    .portfolio-grid .portfolio-thumb,
    .archive-portfolio-grid .portfolio-thumb,
    .entry-card-media,
    .blog-thumb,
    .site-card,
    .hero-site-card {
        background-position: top center !important;
    }
    .portfolio-grid .portfolio-thumb img,
    .archive-portfolio-grid .portfolio-thumb img,
    .entry-card-media img,
    .blog-thumb img,
    .site-card img,
    .hero-site-card img,
    .elementor-slide img {
        object-fit: cover !important;
        object-position: top center !important;
    }
    .portfolio-grid .portfolio-info h3,
    .archive-portfolio-grid .portfolio-info h3,
    .entry-card-body h2,
    .entry-card-body h3 {
        font-size: 1.12rem !important;
        line-height: 1.18 !important;
    }
    .portfolio-grid .portfolio-info p,
    .archive-portfolio-grid .portfolio-info p,
    .entry-card-body p {
        font-size: .93rem !important;
        line-height: 1.48 !important;
    }
    .portfolio-view-link { font-size: .88rem !important; }

    .pricing-grid { max-width: 430px !important; gap: 1rem !important; }
    .pricing-card { padding: 1.25rem !important; border-radius: 18px !important; }
    .pricing-header h3 {
        font-size: 1.38rem !important;
        line-height: 1.12 !important;
    }
    .pricing-price,
    .price-line {
        font-size: 2.05rem !important;
        line-height: 1.05 !important;
    }
    .price-from,
    .price-to,
    .price-single { font-size: 2.05rem !important; }
    .pricing-label-note,
    .pricing-contract-note {
        font-size: .86rem !important;
        line-height: 1.46 !important;
    }
    .pricing-desc { font-size: .98rem !important; line-height: 1.58 !important; }
    .pricing-features li { font-size: .94rem !important; line-height: 1.45 !important; }
    .pricing-note-small {
        display: block !important;
        margin-top: .72rem !important;
        text-align: center !important;
        font-size: .72rem !important;
        line-height: 1.35 !important;
        color: var(--text-muted) !important;
    }

    .faq .section-header { margin-bottom: 1.05rem !important; }
    .faq-grid { gap: .55rem !important; }
    .faq-question {
        font-size: 1rem !important;
        line-height: 1.28 !important;
        padding: .9rem 1rem !important;
    }
    .faq-answer p { font-size: .95rem !important; line-height: 1.58 !important; }

    .contact .section-heading {
        font-size: clamp(2.35rem, 11vw, 3.08rem) !important;
        line-height: 1.02 !important;
    }
    .contact-form-shell { padding: .75rem !important; border-radius: 20px !important; }

    .dmcf-form { padding: 1rem !important; border-radius: 20px !important; }
    .dmcf-step-head {
        text-align: center !important;
        margin-bottom: .95rem !important;
    }
    .dmcf-step-head h3 {
        font-size: clamp(1.65rem, 8.5vw, 2.1rem) !important;
        line-height: 1.07 !important;
        margin-bottom: .35rem !important;
    }
    .dmcf-step-head p {
        font-size: .95rem !important;
        line-height: 1.35 !important;
    }
    .dmcf-service-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: .55rem !important;
        margin-bottom: 1rem !important;
    }
    .dmcf-service-card {
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 34px minmax(0,1fr) 26px !important;
        align-items: center !important;
        column-gap: .72rem !important;
        padding: .65rem .7rem !important;
        border-radius: 999px !important;
        background: #fff !important;
    }
    .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: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        border-radius: 999px !important;
        font-size: 18px !important;
        margin: 0 !important;
    }
    .dmcf-service-card strong {
        font-size: .98rem !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .dmcf-service-card small { display: none !important; }
    .dmcf-service-check {
        position: static !important;
        width: 24px !important;
        height: 24px !important;
        transform: none !important;
    }
    .dmcf-actions { margin-top: 1rem !important; }
    .form-note { margin-top: .7rem !important; font-size: .72rem !important; text-align: center !important; }
}

@media (max-width: 380px) {
    .header .header-btn { padding: .48rem .58rem !important; font-size: .66rem !important; }
    .brand-logo-header img,
    .header .brand-logo img { height: 24px !important; max-width: 122px !important; }
    .menu-toggle { width: 36px !important; height: 36px !important; flex-basis: 36px !important; }
    .dmcf-service-card strong { font-size: .93rem !important; }
}

/* ==================== SimpleLook v1.0.23 mobile header + contact form hard fix ==================== */
@media (max-width: 720px) {
    html, body { overflow-x: hidden !important; }

    .header,
    body.home .header,
    body.home .header:not(.scrolled),
    body.home .header.scrolled,
    .header.scrolled {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 56px !important;
        padding: .38rem .72rem !important;
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-top: 0 !important;
        background: rgba(255,255,255,.96) !important;
        box-shadow: 0 1px 0 rgba(15,23,42,.08) !important;
        gap: .55rem !important;
    }
    body.admin-bar .header,
    body.admin-bar.home .header,
    body.admin-bar.home .header.scrolled {
        top: 46px !important;
    }
    .header .logo,
    body.home .header .logo {
        min-width: 0 !important;
        flex: 1 1 auto !important;
        overflow: hidden !important;
    }
    .brand-logo-header img,
    .header .brand-logo img,
    body.home .header .brand-logo img {
        height: 22px !important;
        max-width: 126px !important;
        width: auto !important;
        display: block !important;
    }
    .header .header-btn,
    body.home .header .header-btn {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 34px !important;
        height: 34px !important;
        padding: .42rem .72rem !important;
        font-size: .68rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        border-radius: 999px !important;
    }
    .menu-toggle,
    body.home .menu-toggle {
        display: grid !important;
        flex: 0 0 36px !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 999px !important;
    }

    #contact,
    .contact,
    .contact-form-shell,
    .sl-contact-form-card { scroll-margin-top: 76px !important; }

    .contact .section-heading { font-size: clamp(2rem, 9.4vw, 2.65rem) !important; }
    .contact-form-shell {
        padding: .55rem !important;
        border-radius: 18px !important;
        box-shadow: 0 10px 32px rgba(15,23,42,.05) !important;
    }
    .dmcf-form,
    .contact .dmcf-form,
    .sl-contact-form-card .dmcf-form {
        padding: .82rem !important;
        border-radius: 18px !important;
        overflow: visible !important;
    }
    .dmcf-step-head,
    .contact .dmcf-step-head {
        max-width: 100% !important;
        margin: 0 auto .78rem !important;
        padding: 0 .15rem !important;
        text-align: center !important;
    }
    .dmcf-step-head h3,
    .contact .dmcf-step-head h3 {
        font-size: clamp(1.38rem, 6.8vw, 1.82rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -.035em !important;
        margin: 0 0 .32rem !important;
        text-wrap: balance !important;
    }
    .dmcf-step-head p,
    .contact .dmcf-step-head p {
        font-size: .9rem !important;
        line-height: 1.35 !important;
        max-width: 310px !important;
        margin: 0 auto !important;
    }
    .dmcf-kicker { font-size: .66rem !important; padding: .2rem .58rem !important; margin-bottom: .42rem !important; }

    .dmcf-service-grid,
    .contact .dmcf-service-grid,
    .sl-contact-form-card .dmcf-service-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: .48rem !important;
        margin: .75rem 0 .85rem !important;
    }
    .dmcf-service-card,
    .contact .dmcf-service-card,
    .sl-contact-form-card .dmcf-service-card {
        width: 100% !important;
        min-height: 58px !important;
        display: grid !important;
        grid-template-columns: 32px minmax(0,1fr) 24px !important;
        align-items: center !important;
        column-gap: .62rem !important;
        padding: .58rem .62rem !important;
        border-radius: 18px !important;
        background: #fff !important;
        overflow: visible !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .dmcf-service-card:hover,
    .contact .dmcf-service-card:hover { transform: none !important; box-shadow: none !important; }
    .dmcf-service-card .dmcf-service-icon,
    .contact .dmcf-service-card .dmcf-service-icon,
    .sl-contact-form-card .dmcf-service-card .dmcf-service-icon,
    .dmcf-service-card > .material-symbols-rounded.dmcf-service-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        border-radius: 999px !important;
        font-size: 17px !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .dmcf-service-card strong,
    .contact .dmcf-service-card strong,
    .sl-contact-form-card .dmcf-service-card strong {
        display: block !important;
        min-width: 0 !important;
        max-width: 100% !important;
        font-size: .96rem !important;
        line-height: 1.16 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        word-break: normal !important;
        hyphens: auto !important;
    }
    .dmcf-service-card small,
    .contact .dmcf-service-card small { display: none !important; }
    .dmcf-service-check,
    .contact .dmcf-service-check {
        position: static !important;
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        transform: none !important;
    }
    .dmcf-actions {
        gap: .55rem !important;
        margin-top: .9rem !important;
    }
}

@media (max-width: 390px) {
    .brand-logo-header img,
    .header .brand-logo img,
    body.home .header .brand-logo img { max-width: 116px !important; height: 21px !important; }
    .header .header-btn,
    body.home .header .header-btn { padding: .4rem .62rem !important; font-size: .64rem !important; }
    .menu-toggle,
    body.home .menu-toggle { width: 34px !important; height: 34px !important; min-width: 34px !important; flex-basis: 34px !important; }
    .dmcf-service-card strong,
    .contact .dmcf-service-card strong { font-size: .92rem !important; }
}


/* SimpleLook v1.0.24 - final mobile header flush + contact row override */
@media (max-width: 720px) {
    body .header,
    body .header.scrolled,
    body.home .header,
    body.home .header:not(.scrolled),
    body.home .header.scrolled,
    body.admin-bar .header,
    body.admin-bar .header.scrolled,
    body.admin-bar.home .header,
    body.admin-bar.home .header:not(.scrolled),
    body.admin-bar.home .header.scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 54px !important;
        padding: .34rem .72rem !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border-width: 0 0 1px 0 !important;
        background: rgba(255,255,255,.97) !important;
        box-shadow: 0 1px 0 rgba(15,23,42,.08) !important;
    }
    .brand-logo-header img,
    .header .brand-logo img,
    body.home .header .brand-logo img { height: 22px !important; max-width: 128px !important; }
    .header .header-btn,
    body.home .header .header-btn { height: 34px !important; min-height:34px!important; padding:.42rem .7rem!important; font-size:.67rem!important; }
    .menu-toggle,
    body.home .menu-toggle { width:36px!important;height:36px!important;min-width:36px!important;flex-basis:36px!important; }

    .dmcf-service-grid,
    .contact .dmcf-service-grid,
    .sl-contact-form-card .dmcf-service-grid { grid-template-columns:1fr!important; gap:.55rem!important; }
    .dmcf-service-card,
    .contact .dmcf-service-card,
    .sl-contact-form-card .dmcf-service-card {
        display:grid!important;
        grid-template-columns:24px 34px minmax(0,1fr)!important;
        align-items:center!important;
        column-gap:.7rem!important;
        min-height:56px!important;
        padding:.62rem .78rem!important;
        border-radius:999px!important;
        overflow:hidden!important;
        background:#fff!important;
        box-shadow:none!important;
        transform:none!important;
    }
    .dmcf-service-check,
    .contact .dmcf-service-check { grid-column:1!important; position:static!important; width:24px!important; height:24px!important; min-width:24px!important; margin:0!important; transform:none!important; }
    .dmcf-service-card .dmcf-service-icon,
    .contact .dmcf-service-card .dmcf-service-icon,
    .sl-contact-form-card .dmcf-service-card .dmcf-service-icon { grid-column:2!important; width:34px!important; height:34px!important; min-width:34px!important; min-height:34px!important; margin:0!important; }
    .dmcf-service-card strong,
    .contact .dmcf-service-card strong,
    .sl-contact-form-card .dmcf-service-card strong { grid-column:3!important; text-align:left!important; font-size:1rem!important; line-height:1.12!important; font-weight:800!important; white-space:normal!important; overflow:visible!important; text-overflow:clip!important; hyphens:none!important; }
}
@media (max-width:390px){
    .dmcf-service-card,
    .contact .dmcf-service-card,
    .sl-contact-form-card .dmcf-service-card { grid-template-columns:22px 32px minmax(0,1fr)!important; column-gap:.6rem!important; padding:.58rem .66rem!important; }
    .dmcf-service-card strong,
    .contact .dmcf-service-card strong { font-size:.95rem!important; }
}
