/*
Theme Name: Digital Harsh
Theme URI: https://digitalharsh.in
Author: Digital Harsh
Author URI: https://digitalharsh.in
Description: Premium WordPress theme for Digital Harsh Digital Marketing Agency. Fully plugin-compatible with Elementor, WooCommerce, Contact Form 7, Rank Math SEO, WPForms, and all major plugins. Built for speed and SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digital-harsh
Tags: custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, blog, business, marketing, portfolio
*/

/* === CSS VARIABLES === */
:root {
  --dh-primary: #f97316;
  --dh-primary-dark: #ea580c;
  --dh-secondary: #0ea5e9;
  --dh-ink: #0d0d0d;
  --dh-ink2: #3a3a3a;
  --dh-muted: #6b7280;
  --dh-bg: #fafaf8;
  --dh-white: #ffffff;
  --dh-border: #e5e7eb;
  --dh-green: #10b981;
  --dh-font-head: 'Clash Display', 'Syne', sans-serif;
  --dh-font-body: 'Satoshi', 'DM Sans', sans-serif;
  --dh-radius: 12px;
  --dh-radius-lg: 20px;
  --dh-shadow: 0 4px 24px rgba(0,0,0,.08);
  --dh-shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--dh-font-body); background: var(--dh-bg); color: var(--dh-ink); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--dh-font-head); line-height: 1.1; letter-spacing: -.025em; color: var(--dh-ink); font-weight: 700; margin-bottom: .8rem; }
h1 { font-size: clamp(2.2rem,5vw,4rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); }
h4 { font-size: 1.2rem; } h5 { font-size: 1rem; } h6 { font-size: .9rem; }
p { margin-bottom: 1rem; color: var(--dh-ink2); }
a { color: var(--dh-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dh-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul,ol { padding-left: 1.5rem; }

/* === LAYOUT === */
.container, .dh-container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
#page { min-height: 100vh; display: flex; flex-direction: column; }
#content { flex: 1; padding-top: 74px; }
.site-main { padding: 4rem 0; }
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.content-sidebar-wrap.no-sidebar { grid-template-columns: 1fr; }

/* === SKIP LINK === */
.skip-link { position: absolute; top: -999px; left: 1rem; background: var(--dh-primary); color: #fff; padding: .5rem 1rem; border-radius: 0 0 8px 8px; font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 0; }

/* === HEADER === */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(250,250,248,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--dh-border); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 1160px; margin: 0 auto; }
.site-branding .site-title { margin: 0; font-size: 1.5rem; line-height: 1; }
.site-branding .site-title a { color: var(--dh-ink); font-weight: 700; }
.site-branding .site-title a span { color: var(--dh-primary); }
.custom-logo { max-height: 44px; width: auto; }
.main-navigation ul { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.main-navigation ul li a { color: var(--dh-ink2); font-size: .9rem; font-weight: 500; transition: color .2s; position: relative; padding-bottom: 2px; }
.main-navigation ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--dh-primary); border-radius: 2px; transition: width .2s; }
.main-navigation ul li a:hover, .main-navigation ul li.current-menu-item > a { color: var(--dh-primary); }
.main-navigation ul li a:hover::after, .main-navigation ul li.current-menu-item > a::after { width: 100%; }
.main-navigation ul ul { position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; background: var(--dh-white); border: 1px solid var(--dh-border); border-radius: var(--dh-radius); box-shadow: var(--dh-shadow-lg); flex-direction: column; gap: 0; padding: .5rem; display: none; }
.main-navigation ul li { position: relative; }
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul ul li a { padding: .55rem .8rem; display: block; border-radius: 8px; font-size: .88rem; }
.main-navigation ul ul li a:hover { background: var(--dh-bg); }
.header-cta { background: var(--dh-ink); color: #fff !important; padding: .55rem 1.4rem; border-radius: 99px; font-size: .88rem; font-weight: 700; transition: all .2s; }
.header-cta:hover { background: var(--dh-primary) !important; color: #fff !important; }
.menu-toggle { display: none; background: none; border: 1px solid var(--dh-border); border-radius: 8px; padding: .45rem .6rem; cursor: pointer; font-size: 1.2rem; color: var(--dh-ink); }

/* === BUTTONS === */
.btn, .wp-block-button__link { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.8rem; border-radius: 99px; font-family: var(--dh-font-body); font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .2s; border: none; text-decoration: none; line-height: 1; }
.btn-primary, .wp-block-button .wp-block-button__link { background: var(--dh-ink); color: #fff; }
.btn-primary:hover { background: var(--dh-primary); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: var(--dh-white); color: var(--dh-ink); border: 1.5px solid var(--dh-border); }
.btn-secondary:hover { border-color: var(--dh-ink); transform: translateY(-2px); }
.btn-accent { background: var(--dh-primary); color: #fff; }
.btn-accent:hover { background: var(--dh-primary-dark); transform: translateY(-2px); }

/* === HERO === */
.dh-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 1.5rem 5rem; position: relative; overflow: hidden; background: var(--dh-bg); }
.dh-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--dh-border) 1px,transparent 1px), linear-gradient(90deg,var(--dh-border) 1px,transparent 1px); background-size: 64px 64px; opacity: .4; pointer-events: none; }
.dh-hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.dh-hero-blob-1 { width: 600px; height: 600px; top: -120px; right: -100px; background: radial-gradient(circle,rgba(249,115,22,.15),transparent 70%); }
.dh-hero-blob-2 { width: 400px; height: 400px; bottom: -60px; left: -80px; background: radial-gradient(circle,rgba(14,165,233,.12),transparent 70%); }
.dh-hero-inner { position: relative; z-index: 1; max-width: 860px; }
.dh-hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--dh-white); border: 1px solid var(--dh-border); border-radius: 99px; padding: .35rem 1.1rem; font-size: .8rem; font-weight: 600; color: var(--dh-ink2); margin-bottom: 1.5rem; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.dh-hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dh-green); animation: dh-pulse 1.8s ease-in-out infinite; }
@keyframes dh-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.dh-hero h1 em { font-style: normal; color: var(--dh-primary); position: relative; }
.dh-hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px; background: var(--dh-primary); border-radius: 4px; opacity: .35; }
.dh-hero-sub { font-size: 1.1rem; color: var(--dh-muted); max-width: 560px; margin: 1.2rem auto 0; line-height: 1.75; }
.dh-hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.dh-stats-bar { display: flex; border: 1px solid var(--dh-border); border-radius: 16px; overflow: hidden; background: var(--dh-white); margin-top: 3.5rem; max-width: 640px; width: 100%; }
.dh-stat { flex: 1; padding: 1.1rem 1rem; text-align: center; border-right: 1px solid var(--dh-border); }
.dh-stat:last-child { border-right: none; }
.dh-stat-num { font-family: var(--dh-font-head); font-size: 1.6rem; font-weight: 700; color: var(--dh-ink); line-height: 1; }
.dh-stat-label { font-size: .76rem; color: var(--dh-muted); margin-top: .2rem; }

/* === SECTIONS === */
.dh-section { padding: 6rem 0; }
.dh-section-alt { background: var(--dh-white); }
.dh-section-dark { background: var(--dh-ink); }
.dh-section-tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dh-primary); margin-bottom: .8rem; }
.dh-section-dark .dh-section-title { color: var(--dh-white); }
.dh-section-dark .dh-section-sub { color: rgba(255,255,255,.5); }
.dh-section-sub { font-size: 1rem; color: var(--dh-muted); max-width: 540px; margin-top: .6rem; line-height: 1.75; }
.dh-section-header { margin-bottom: 3.5rem; }
.dh-section-header.center { text-align: center; }
.dh-section-header.center .dh-section-sub { margin-left: auto; margin-right: auto; }

/* === SERVICES === */
.dh-services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.dh-service-card { border: 1px solid var(--dh-border); border-radius: var(--dh-radius-lg); padding: 2rem; background: var(--dh-bg); transition: all .25s; position: relative; overflow: hidden; }
.dh-service-card:hover { border-color: var(--dh-primary); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(249,115,22,.12); }
.dh-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; border-radius: 20px 20px 0 0; background: var(--dh-primary); opacity: 0; transition: opacity .25s; }
.dh-service-card:hover::before { opacity: 1; }
.dh-service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.2rem; background: #fff7ed; }
.dh-service-name { font-family: var(--dh-font-head); font-size: 1.1rem; font-weight: 700; color: var(--dh-ink); margin-bottom: .5rem; }
.dh-service-desc { font-size: .88rem; color: var(--dh-muted); line-height: 1.65; }
.dh-service-tag { display: inline-block; margin-top: 1rem; font-size: .75rem; font-weight: 600; color: var(--dh-primary); background: #fff3eb; padding: .25rem .7rem; border-radius: 99px; }

/* === WHY US === */
.dh-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 3rem; }
.dh-why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.dh-why-item { display: flex; gap: 1rem; align-items: flex-start; }
.dh-why-dot { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.dh-why-text strong { display: block; font-size: .95rem; font-weight: 600; color: var(--dh-white); margin-bottom: .2rem; }
.dh-why-text span { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.dh-metrics-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--dh-radius-lg); padding: 2rem; }
.dh-metric-row { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1rem; background: rgba(255,255,255,.05); border-radius: 12px; margin-bottom: .75rem; border: 1px solid rgba(255,255,255,.06); }
.dh-metric-row:last-child { margin-bottom: 0; }
.dh-metric-label { font-size: .82rem; color: rgba(255,255,255,.45); }
.dh-metric-bar-wrap { flex: 1; margin: 0 1rem; height: 4px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.dh-metric-bar { height: 100%; border-radius: 99px; background: var(--dh-primary); }
.dh-metric-val { font-family: var(--dh-font-head); font-size: 1rem; font-weight: 700; color: var(--dh-primary); min-width: 48px; text-align: right; }

/* === PROCESS === */
.dh-process-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; margin-top: 3rem; counter-reset: dh-step; }
.dh-process-step { background: var(--dh-white); border: 1px solid var(--dh-border); border-radius: var(--dh-radius-lg); padding: 1.8rem 1.5rem; position: relative; counter-increment: dh-step; transition: all .2s; }
.dh-process-step:hover { box-shadow: var(--dh-shadow); transform: translateY(-3px); }
.dh-process-step::before { content: counter(dh-step,decimal-leading-zero); font-family: var(--dh-font-head); font-size: 2.6rem; font-weight: 700; color: var(--dh-border); position: absolute; top: 1rem; right: 1.2rem; line-height: 1; }
.dh-step-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.dh-step-name { font-family: var(--dh-font-head); font-size: 1rem; font-weight: 700; color: var(--dh-ink); margin-bottom: .4rem; }
.dh-step-desc { font-size: .85rem; color: var(--dh-muted); line-height: 1.65; }

/* === CTA SECTION === */
.dh-cta { background: linear-gradient(135deg,var(--dh-primary),var(--dh-primary-dark)); padding: 6rem 1.5rem; text-align: center; }
.dh-cta .dh-section-title { color: #fff; }
.dh-cta .dh-section-sub { color: rgba(255,255,255,.75); margin: .5rem auto 0; }
.dh-cta-form { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.dh-cta-form input[type="email"], .dh-cta-form input[type="text"] { padding: .8rem 1.4rem; border-radius: 99px; border: none; font-size: .95rem; font-family: var(--dh-font-body); width: 300px; outline: none; color: var(--dh-ink); }
.dh-cta-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.35); }

/* === BLOG / POSTS === */
.post { margin-bottom: 3rem; }
.entry-header { margin-bottom: 1.5rem; }
.entry-title { margin-bottom: .5rem; }
.entry-title a { color: var(--dh-ink); }
.entry-title a:hover { color: var(--dh-primary); }
.entry-meta { font-size: .85rem; color: var(--dh-muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.entry-meta a { color: var(--dh-muted); }
.entry-meta a:hover { color: var(--dh-primary); }
.entry-thumbnail { border-radius: var(--dh-radius); overflow: hidden; margin-bottom: 1.5rem; }
.entry-thumbnail img { width: 100%; object-fit: cover; }
.entry-content { font-size: 1rem; line-height: 1.8; }
.entry-content h2,.entry-content h3 { margin: 2rem 0 .8rem; }
.entry-content blockquote { border-left: 4px solid var(--dh-primary); margin: 1.5rem 0; padding: 1rem 1.5rem; background: #fff7ed; border-radius: 0 var(--dh-radius) var(--dh-radius) 0; font-style: italic; color: var(--dh-ink2); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.post-card { background: var(--dh-white); border: 1px solid var(--dh-border); border-radius: var(--dh-radius-lg); overflow: hidden; transition: all .25s; }
.post-card:hover { box-shadow: var(--dh-shadow-lg); transform: translateY(-4px); }
.post-card-thumb { overflow: hidden; aspect-ratio: 16/9; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-body { padding: 1.5rem; }
.post-card-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dh-primary); margin-bottom: .5rem; }
.post-card-title { font-family: var(--dh-font-head); font-size: 1.1rem; font-weight: 700; color: var(--dh-ink); margin-bottom: .6rem; }
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--dh-primary); }
.post-card-excerpt { font-size: .88rem; color: var(--dh-muted); line-height: 1.65; }
.post-card-meta { margin-top: 1rem; font-size: .8rem; color: var(--dh-muted); }

/* === PAGINATION === */
.pagination, .nav-links { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--dh-border); font-size: .9rem; color: var(--dh-ink); transition: all .2s; font-weight: 500; }
.page-numbers.current, .page-numbers:hover { background: var(--dh-primary); color: #fff; border-color: var(--dh-primary); }

/* === SIDEBAR === */
.widget-area .widget { background: var(--dh-white); border: 1px solid var(--dh-border); border-radius: var(--dh-radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-area .widget-title { font-size: 1rem; font-weight: 700; color: var(--dh-ink); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--dh-primary); }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: .4rem 0; border-bottom: 1px solid var(--dh-border); font-size: .9rem; }
.widget ul li:last-child { border-bottom: none; }
.widget_search .search-form { display: flex; gap: .5rem; }
.widget_search .search-field { flex: 1; padding: .6rem 1rem; border: 1px solid var(--dh-border); border-radius: 8px; font-family: var(--dh-font-body); font-size: .9rem; }
.widget_search .search-submit { background: var(--dh-primary); color: #fff; border: none; border-radius: 8px; padding: .6rem 1rem; cursor: pointer; }

/* === FORMS === */
input[type="text"],input[type="email"],input[type="tel"],input[type="url"],input[type="number"],input[type="password"],input[type="search"],textarea,select { width: 100%; padding: .75rem 1rem; border: 1px solid var(--dh-border); border-radius: 10px; font-family: var(--dh-font-body); font-size: .95rem; color: var(--dh-ink); background: var(--dh-white); transition: border-color .2s,box-shadow .2s; outline: none; display: block; }
input:focus,textarea:focus,select:focus { border-color: var(--dh-primary); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
textarea { min-height: 140px; resize: vertical; }
label { display: block; font-size: .88rem; font-weight: 600; color: var(--dh-ink2); margin-bottom: .4rem; }
.form-row { margin-bottom: 1.2rem; }
.wpcf7-not-valid { border-color: #ef4444 !important; }
div.wpcf7-mail-sent-ok { background: #ecfdf5; border-color: var(--dh-green) !important; color: #065f46; border-radius: 8px; padding: .8rem 1rem; margin-top: 1rem; }
div.wpcf7-validation-errors { background: #fef2f2; border-color: #ef4444 !important; color: #991b1b; border-radius: 8px; padding: .8rem 1rem; margin-top: 1rem; }

/* === GUTENBERG === */
.wp-block-image img { border-radius: var(--dh-radius); }
.wp-block-quote { border-left: 4px solid var(--dh-primary); padding: 1rem 1.5rem; background: #fff7ed; border-radius: 0 var(--dh-radius) var(--dh-radius) 0; }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table th { background: var(--dh-ink); color: #fff; padding: .75rem 1rem; text-align: left; }
.wp-block-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--dh-border); font-size: .9rem; }
.wp-block-table tr:hover td { background: var(--dh-bg); }
.wp-block-code { background: var(--dh-ink); color: #e2e8f0; border-radius: var(--dh-radius); padding: 1.5rem; }
.has-primary-color { color: var(--dh-primary); }
.has-primary-background-color { background-color: var(--dh-primary); }

/* === WOOCOMMERCE === */
.woocommerce .price { color: var(--dh-primary) !important; font-weight: 700; }
.woocommerce a.button { border-radius: 99px !important; font-family: var(--dh-font-body) !important; }
.woocommerce a.button.alt { background: var(--dh-primary) !important; }
.woocommerce a.button.alt:hover { background: var(--dh-primary-dark) !important; }
.woocommerce-message { border-top-color: var(--dh-primary) !important; }

/* === FOOTER === */
.site-footer { background: var(--dh-ink); color: rgba(255,255,255,.45); padding: 4rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1160px; margin: 0 auto 3rem; }
.footer-brand .footer-logo { font-family: var(--dh-font-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .8rem; }
.footer-brand .footer-logo span { color: var(--dh-primary); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--dh-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; max-width: 1160px; margin: 0 auto; font-size: .82rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--dh-primary); }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-primary { color: var(--dh-primary); }
.bg-dark { background: var(--dh-ink); }
.bg-white { background: var(--dh-white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dh-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .main-navigation { display: none; }
  .main-navigation.toggled { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--dh-white); border-bottom: 1px solid var(--dh-border); padding: 1rem; }
  .main-navigation.toggled ul { flex-direction: column; gap: 0; }
  .main-navigation.toggled ul li a { display: block; padding: .7rem .5rem; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dh-stats-bar { flex-wrap: wrap; }
  .dh-stat { flex: 1 1 50%; }
  .dh-cta-form { flex-direction: column; align-items: center; }
  .dh-cta-form input { width: 100%; max-width: 360px; }
}
@media (max-width: 480px) {
  .dh-hero-btns { flex-direction: column; align-items: center; }
  .dh-services-grid { grid-template-columns: 1fr; }
  .dh-process-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media print {
  .site-header, .site-footer, .widget-area { display: none; }
  body { color: #000; background: #fff; }
}
