/*
Theme Name: SAK DIGITAL
Theme URI: https://example.com/sak-digital
Author: Your Agency
Author URI: https://example.com
Description: A modern, SEO-friendly WordPress theme built for digital marketing agencies. Fully compatible with Elementor & Elementor Pro (Theme Builder locations included), fast-loading, schema.org ready, and built with clean semantic markup.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sak-digital
Tags: custom-menu, featured-images, footer-widgets, full-width-template, translation-ready, threaded-comments, blog

SAK DIGITAL is distributed under the terms of the GNU GPL v2 or later.
*/

/* -------------------------------------------------
   0. CSS Reset / Base
------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--dm-primary: #4f46e5;
	--dm-primary-dark: #3730a3;
	--dm-primary-light: #eef2ff;
	--dm-accent: #06b6d4;
	--dm-dark: #0f172a;
	--dm-gray-900: #111827;
	--dm-gray-700: #374151;
	--dm-gray-500: #6b7280;
	--dm-gray-300: #d1d5db;
	--dm-gray-200: #e5e7eb;
	--dm-gray-100: #f3f4f6;
	--dm-gray-50: #f9fafb;
	--dm-white: #ffffff;
	--dm-success: #16a34a;
	--dm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--dm-radius-sm: 8px;
	--dm-radius: 14px;
	--dm-radius-lg: 22px;
	--dm-container: 1200px;
	--dm-header-height: 84px;
	--dm-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--dm-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
	--dm-transition: 0.2s ease;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--dm-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--dm-gray-700);
	background: var(--dm-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--dm-primary);
	text-decoration: none;
	transition: color var(--dm-transition);
}

a:hover,
a:focus {
	color: var(--dm-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dm-font);
	color: var(--dm-dark);
	line-height: 1.25;
	font-weight: 700;
	margin: 0 0 0.6em;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.2em; }

ul, ol { padding-left: 1.4em; }

button, input, select, textarea {
	font-family: inherit;
	font-size: 1rem;
}

/* Accessibility */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0; padding: 0; margin: -1px;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--dm-dark);
	color: #fff;
	padding: 12px 20px;
	z-index: 10000;
	transition: top var(--dm-transition);
}
.skip-link:focus {
	top: 0;
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--dm-primary);
	outline-offset: 2px;
}

/* -------------------------------------------------
   1. Layout helpers
------------------------------------------------- */
.dm-container {
	max-width: var(--dm-container);
	margin: 0 auto;
	padding: 0 24px;
}

.alignwide { max-width: calc(var(--dm-container) + 200px); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
.alignleft { float: left; margin: 0.4em 1.5em 1em 0; }
.alignright { float: right; margin: 0.4em 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* -------------------------------------------------
   1b. Top Contact Bar
------------------------------------------------- */
.top-bar {
	background: var(--dm-dark);
	color: var(--dm-gray-300);
	font-size: 0.82rem;
}
.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	gap: 16px;
}
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a { color: var(--dm-gray-300); }
.top-bar-contact a:hover { color: #fff; }
.top-bar .footer-social { margin-top: 0; }
.top-bar .footer-social a { width: 26px; height: 26px; background: rgba(255,255,255,0.08); }

/* -------------------------------------------------
   2. Site Header
------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--dm-gray-200);
	height: var(--dm-header-height);
	display: flex;
	align-items: center;
}

.site-header .dm-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-branding img {
	max-height: 42px;
	width: auto;
}

.site-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--dm-dark);
	margin: 0;
}

.site-title a {
	color: inherit;
}

.site-description {
	font-size: 0.8rem;
	color: var(--dm-gray-500);
	margin: 0;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-menu {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.primary-menu li { position: relative; }

.primary-menu a {
	color: var(--dm-gray-900);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 8px 0;
	display: inline-block;
}

.primary-menu a:hover { color: var(--dm-primary); }

.primary-menu .sub-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--dm-white);
	box-shadow: var(--dm-shadow-lg);
	border-radius: var(--dm-radius-sm);
	min-width: 220px;
	padding: 10px;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--dm-transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	padding: 8px 12px;
	border-radius: 6px;
	display: block;
}
.primary-menu .sub-menu a:hover { background: var(--dm-gray-100); }

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--dm-dark);
}

.menu-toggle .bar {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	margin: 5px 0;
	transition: all var(--dm-transition);
}

/* -------------------------------------------------
   3. Buttons
------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--dm-transition);
	white-space: nowrap;
}

.btn-primary {
	background: var(--dm-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}
.btn-primary:hover {
	background: var(--dm-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline {
	border-color: var(--dm-gray-300);
	color: var(--dm-gray-900);
	background: transparent;
}
.btn-outline:hover {
	border-color: var(--dm-primary);
	color: var(--dm-primary);
}

/* -------------------------------------------------
   4. Main content / Blog
------------------------------------------------- */
.site-main {
	min-height: 40vh;
	padding: 64px 0;
}

.page-header {
	margin-bottom: 40px;
	text-align: center;
}

.page-header .page-title {
	margin-bottom: 8px;
}

.entry-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.entry-card {
	border: 1px solid var(--dm-gray-200);
	border-radius: var(--dm-radius);
	overflow: hidden;
	background: var(--dm-white);
	transition: box-shadow var(--dm-transition), transform var(--dm-transition);
	display: flex;
	flex-direction: column;
}
.entry-card:hover {
	box-shadow: var(--dm-shadow-lg);
	transform: translateY(-4px);
}

.entry-card .entry-thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--dm-gray-100);
}
.entry-card .entry-thumb img { width: 100%; height: 100%; object-fit: cover; }

.entry-card .entry-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.entry-meta {
	font-size: 0.82rem;
	color: var(--dm-gray-500);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.entry-meta a { color: var(--dm-primary); }

.entry-card .entry-title { font-size: 1.2rem; margin-bottom: 10px; }
.entry-card .entry-title a { color: var(--dm-dark); }
.entry-card .entry-title a:hover { color: var(--dm-primary); }

.entry-excerpt { color: var(--dm-gray-500); font-size: 0.95rem; flex: 1; }

.read-more {
	margin-top: 14px;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Single post */
.single-post-header { max-width: 800px; margin: 0 auto 32px; text-align: center; }
.single-post-header .entry-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.single-featured-image { max-width: var(--dm-container); margin: 0 auto 40px; border-radius: var(--dm-radius); overflow: hidden; }
.single-featured-image img { width: 100%; }

.entry-content { max-width: 760px; margin: 0 auto; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content img { border-radius: var(--dm-radius-sm); }
.entry-content blockquote {
	border-left: 4px solid var(--dm-primary);
	background: var(--dm-primary-light);
	padding: 18px 24px;
	border-radius: 0 var(--dm-radius-sm) var(--dm-radius-sm) 0;
	font-style: italic;
	color: var(--dm-gray-900);
}
.entry-content pre {
	background: var(--dm-gray-900);
	color: #f3f4f6;
	padding: 18px;
	border-radius: var(--dm-radius-sm);
	overflow-x: auto;
}
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content table th, .entry-content table td {
	border: 1px solid var(--dm-gray-200);
	padding: 10px 14px;
	text-align: left;
}

.entry-tags { max-width: 760px; margin: 40px auto 0; display: flex; flex-wrap: wrap; gap: 8px; }
.entry-tags a {
	background: var(--dm-gray-100);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	color: var(--dm-gray-700);
}
.entry-tags a:hover { background: var(--dm-primary-light); color: var(--dm-primary); }

.post-navigation {
	max-width: 760px;
	margin: 48px auto 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dm-gray-200);
	padding-top: 24px;
}
.post-navigation a { font-weight: 600; }
.post-navigation span { display: block; font-size: 0.8rem; color: var(--dm-gray-500); font-weight: 400; text-transform: uppercase; }

/* Pagination */
.dm-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.dm-pagination a, .dm-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--dm-radius-sm);
	border: 1px solid var(--dm-gray-200);
	color: var(--dm-gray-700);
	font-weight: 600;
	font-size: 0.9rem;
}
.dm-pagination .current { background: var(--dm-primary); border-color: var(--dm-primary); color: #fff; }
.dm-pagination a:hover { border-color: var(--dm-primary); color: var(--dm-primary); }

/* Comments */
.comments-area { max-width: 760px; margin: 56px auto 0; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; padding-left: 40px; }
.comment-body {
	border: 1px solid var(--dm-gray-200);
	border-radius: var(--dm-radius-sm);
	padding: 20px;
	margin-bottom: 16px;
}
.comment-author { font-weight: 700; color: var(--dm-dark); }
.comment-metadata { font-size: 0.8rem; color: var(--dm-gray-500); margin-bottom: 10px; }
.comment-form input, .comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--dm-gray-300);
	border-radius: var(--dm-radius-sm);
	margin-bottom: 14px;
}
.comment-form textarea { min-height: 140px; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--dm-gray-300);
	border-radius: var(--dm-radius-sm);
}
.no-results { text-align: center; padding: 60px 0; }

/* Widgets / Sidebar */
.widget { margin-bottom: 36px; }
.widget-title { font-size: 1.05rem; margin-bottom: 16px; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--dm-gray-100); }

/* -------------------------------------------------
   5. Footer
------------------------------------------------- */
.site-footer {
	background: var(--dm-dark);
	color: var(--dm-gray-300);
	padding: 72px 0 0;
	margin-top: 80px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid .widget-title {
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-grid a { color: var(--dm-gray-300); }
.footer-grid a:hover { color: #fff; }

.footer-brand p { color: var(--dm-gray-500); }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
	transition: background var(--dm-transition);
}
.footer-social a:hover { background: var(--dm-primary); color: #fff; }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 24px 0;
	font-size: 0.85rem;
	color: var(--dm-gray-500);
}
.footer-bottom-menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.footer-bottom-menu a { color: var(--dm-gray-500); }
.footer-bottom-menu a:hover { color: #fff; }

/* -------------------------------------------------
   6. Homepage Sections
------------------------------------------------- */
.eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--dm-primary);
	margin-bottom: 14px;
}

/* Hero */
.hero-section { padding: 72px 0 40px; overflow: hidden; }
.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content .lede { font-size: 1.1rem; max-width: 480px; }
.hero-actions { margin: 28px 0; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--dm-gray-200);
	border-radius: var(--dm-radius-sm);
	padding: 10px 16px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--dm-gray-900);
}
.hero-badge svg { flex-shrink: 0; }
.hero-badge .badge-sub { display: block; font-weight: 400; color: var(--dm-gray-500); font-size: 0.78rem; }
.hero-visual {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--dm-radius-lg);
	background: linear-gradient(135deg, var(--dm-primary-light), #fdf2f8);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-visual svg { width: 70%; height: 70%; }

/* Highlight cards */
.highlight-cards-section { padding: 40px 0 80px; }
.highlight-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.highlight-card {
	background: var(--dm-white);
	border: 1px solid var(--dm-gray-200);
	border-radius: var(--dm-radius);
	padding: 32px 28px;
	transition: transform var(--dm-transition), box-shadow var(--dm-transition);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--dm-shadow-lg); }
.icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #fff;
}
.icon-circle svg { width: 26px; height: 26px; }
.icon-grad-1 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.icon-grad-2 { background: linear-gradient(135deg, #6366f1, #06b6d4); }
.icon-grad-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.icon-grad-4 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.icon-grad-5 { background: linear-gradient(135deg, #8b5cf6, #4f46e5); }
.icon-grad-6 { background: linear-gradient(135deg, #f472b6, #f59e0b); }

.highlight-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.highlight-card p { color: var(--dm-gray-500); font-size: 0.95rem; margin-bottom: 16px; }
.link-arrow { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.link-arrow::after { content: '→'; margin-left: 6px; display: inline-block; transition: transform var(--dm-transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* Split section */
.split-section { padding: 60px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-grid.reverse .split-visual { order: 2; }
.split-visual {
	aspect-ratio: 4 / 3;
	border-radius: var(--dm-radius-lg);
	background: linear-gradient(135deg, #eef2ff, #ecfeff);
	display: flex;
	align-items: center;
	justify-content: center;
}
.split-visual svg { width: 60%; height: 60%; }
.split-text .lede { color: var(--dm-gray-500); }

/* Full-width services band */
.services-band {
	position: relative;
	background: linear-gradient(120deg, var(--dm-primary), #8b5cf6);
	color: #fff;
	padding: 100px 0;
	margin: 20px 0;
	clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}
.services-band .eyebrow { color: rgba(255,255,255,0.75); }
.services-band-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.services-band-header h2 { color: #fff; }
.services-band-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.services-band-item .icon-circle { margin: 0 auto 18px; background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); }
.services-band-item span {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
}

/* Services grid (6-up) */
.services-grid-section { padding: 80px 0; }
.services-grid-section .page-header { max-width: 640px; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}
.service-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-item p { color: var(--dm-gray-500); font-size: 0.92rem; margin: 0; }

/* CTA buttons row */
.cta-row-section { padding: 20px 0 80px; text-align: center; }
.cta-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-purple { background: linear-gradient(120deg, var(--dm-primary), #8b5cf6); color: #fff; box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3); }
.btn-purple:hover { color: #fff; transform: translateY(-1px); }
.btn-orange { background: linear-gradient(120deg, #f59e0b, #f97316); color: #fff; box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); }
.btn-orange:hover { color: #fff; transform: translateY(-1px); }

/* Client logos */
.logos-section { padding: 40px 0 80px; }
.logos-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
	opacity: 0.6;
}
.logo-item {
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--dm-gray-500);
	letter-spacing: -0.02em;
	filter: grayscale(1);
}

/* Testimonials */
.testimonials-section { padding: 40px 0 80px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
	background: linear-gradient(150deg, var(--dm-primary), #7c3aed);
	color: #fff;
	border-radius: var(--dm-radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
}
.testimonial-card .quote-mark { font-size: 2.4rem; line-height: 1; font-weight: 800; opacity: 0.5; margin-bottom: 8px; }
.testimonial-card p.quote-text { font-style: italic; flex: 1; color: rgba(255,255,255,0.95); }
.testimonial-author { font-weight: 700; margin-top: 16px; }
.testimonial-role { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* Case studies */
.case-studies-section { padding: 40px 0 90px; }
.case-studies-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.case-studies-header .page-header { margin-bottom: 0; text-align: left; }
.case-studies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.case-study-card { border-radius: var(--dm-radius); overflow: hidden; border: 1px solid var(--dm-gray-200); }
.case-study-thumb {
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.case-study-thumb svg { width: 40%; height: 40%; }
.case-study-body { padding: 20px; }
.case-study-body h3 { font-size: 1rem; margin-bottom: 8px; }
.case-study-body p { font-size: 0.88rem; color: var(--dm-gray-500); margin: 0; }

/* Final CTA banner */
.cta-banner {
	background: var(--dm-dark);
	border-radius: var(--dm-radius-lg);
	padding: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	color: #fff;
	margin-bottom: 80px;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: var(--dm-gray-300); margin: 0; max-width: 480px; }

/* -------------------------------------------------
   7. Responsive
------------------------------------------------- */
@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
	.highlight-cards { grid-template-columns: 1fr 1fr; }
	.split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
	.split-grid.reverse .split-visual { order: 0; }
	.services-band-grid { grid-template-columns: 1fr 1fr; }
	.services-grid { grid-template-columns: 1fr 1fr; }
	.testimonial-grid { grid-template-columns: 1fr; }
	.case-studies-grid { grid-template-columns: 1fr 1fr; }
	.top-bar-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (max-width: 782px) {
	.primary-navigation {
		position: fixed;
		top: var(--dm-header-height);
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 24px;
		gap: 16px;
		transform: translateX(100%);
		transition: transform var(--dm-transition);
		overflow-y: auto;
	}
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; gap: 4px; }
	.primary-menu .sub-menu {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none; display: none; padding-left: 12px;
	}
	.primary-menu li.menu-open .sub-menu { display: block; }
	.menu-toggle { display: block; }
	.header-cta.btn { display: none; }
	.footer-grid { grid-template-columns: 1fr; }
	.entry-list { grid-template-columns: 1fr; }
	.highlight-cards { grid-template-columns: 1fr; }
	.services-band-grid { grid-template-columns: 1fr 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	.case-studies-grid { grid-template-columns: 1fr; }
	.logos-row { justify-content: center; }
	.cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
	.services-band { padding: 72px 0; }
}

/* Breadcrumbs */
.dm-breadcrumbs { margin-bottom: 24px; font-size: 0.85rem; color: var(--dm-gray-500); }
.dm-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.dm-breadcrumbs a { color: var(--dm-gray-500); }
.dm-breadcrumbs a:hover { color: var(--dm-primary); }
.dm-breadcrumbs span[aria-current] { color: var(--dm-gray-900); font-weight: 600; }

/* Elementor page: let Elementor own the canvas, remove theme padding */
.elementor-page .site-main { padding: 0; }
body.sak-digital-canvas { margin: 0; }
