/* Sirasoft design system — shared across all pages */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #1d1d1f;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

a { color: #ba1c1f; text-decoration: none; }
a:hover { color: #8f1518; }

img { max-width: 100%; }

::selection { background: rgba(186, 28, 31, 0.15); }

/* Shared primitives */
.dq-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-left: clamp(24px, 5vw, 40px);
	padding-right: clamp(24px, 5vw, 40px);
}

.dq-badge {
	display: inline-block;
	background: rgba(186, 28, 31, 0.1);
	color: #ba1c1f;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 14px;
	border-radius: 999px;
}

.dq-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }

.dq-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ba1c1f;
	color: #fff;
	font-weight: 600;
	border-radius: 999px;
	border: none;
	cursor: pointer;
}
.dq-btn:hover { background: #8f1518; color: #fff; }

/* Top bar */
.topbar { background: #1d1d1f; color: #f5f5f7; font-size: 13px; }
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	padding-bottom: 8px;
	flex-wrap: wrap;
	gap: 8px;
}
.topbar-contacts { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-contacts a { color: #f5f5f7; }
.topbar-contacts a:hover { color: #ffffff; }
.topbar-location { color: #a1a1a6; }
.topbar-tag { color: #6e6e73; font-size: 12px; }

/* Navigation */
.site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid #e8e8ed;
}
.site-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.site-nav-logo { display: flex; align-items: center; }
.site-nav-logo img { height: 44px; width: auto; display: block; }
.site-nav-links { display: flex; align-items: center; gap: 32px; }
.site-nav-links > a { font-size: 15px; font-weight: 500; color: #6e6e73; }
.site-nav-links > a:hover { color: #1d1d1f; }
.site-nav-links > a.active { font-weight: 600; color: #ba1c1f; }
.nav-cta { font-size: 14px; padding: 10px 22px; }
/* The CTA button must keep white text despite the higher-specificity nav-link rules */
.site-nav-links > a.dq-btn,
.site-nav-links > a.dq-btn:hover { color: #fff; }

.nav-drop { position: relative; }
.nav-drop-label {
	font-size: 15px;
	font-weight: 500;
	color: #6e6e73;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.nav-drop:hover .nav-drop-label { color: #1d1d1f; }
.nav-drop-label.active { color: #ba1c1f; font-weight: 600; }
.nav-drop-caret { font-size: 10px; color: #ba1c1f; }
.nav-drop-panel {
	position: absolute;
	top: 100%;
	left: -16px;
	padding-top: 12px;
	z-index: 60;
	display: none;
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel { display: block; }
.nav-drop-menu {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 14px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	min-width: 300px;
	padding: 8px;
	display: flex;
	flex-direction: column;
}
.nav-drop-menu--compact { min-width: 180px; }
.nav-drop-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #1d1d1f;
}
.nav-drop-menu a:hover { background: rgba(186, 28, 31, 0.06); color: #ba1c1f; }
.nav-drop-tags {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 2px 14px 10px;
	font-size: 12px;
	color: #6e6e73;
}

/* Products mega dropdown */
.nav-drop-panel--product { left: auto; right: -16px; }
.nav-drop-menu--product {
	min-width: 480px;
	max-width: 500px;
	padding: 10px;
}
.nav-drop-menu a.nav-product-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px;
	border-radius: 10px;
}
.nav-drop-menu a.nav-product-card:hover { background: rgba(186, 28, 31, 0.05); color: #1d1d1f; }
.nav-product-logo {
	display: block;
	width: 160px;
	height: auto;
	flex-shrink: 0;
}
.nav-product-copy { min-width: 0; }
.nav-product-desc {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	color: #6e6e73;
}
.nav-product-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #ba1c1f;
}
.nav-product-arrow { transition: transform 0.2s ease; }
.nav-product-card:hover .nav-product-arrow { transform: translateX(3px); }

/* Mobile menu */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: 1px solid #e8e8ed;
	border-radius: 10px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	height: 2px;
	background: #1d1d1f;
	border-radius: 2px;
}
.mobile-menu {
	display: none;
	border-top: 1px solid #e8e8ed;
	background: #ffffff;
	padding: 12px 0 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 500;
	color: #1d1d1f;
	border-bottom: 1px solid #f5f5f7;
}
.mobile-menu a.active { color: #ba1c1f; font-weight: 600; }
.mobile-menu-group {
	padding: 12px 0 4px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #6e6e73;
}
.mobile-menu .sub { padding-left: 14px; }
.mobile-menu .dq-btn {
	display: inline-flex;
	margin-top: 16px;
	padding: 12px 26px;
	font-size: 15px;
	border-bottom: none;
	color: #fff;
}

/* Hero (home) */
.hero {
	background-image: linear-gradient(90deg, rgba(2, 6, 20, 0.92) 0%, rgba(2, 6, 20, 0.55) 55%, rgba(2, 6, 20, 0.2) 100%), url('../images/slider/slider.jpg');
	background-size: cover;
	background-position: center right;
}
.hero-inner { display: flex; padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(80px, 12vw, 140px); }
.hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	max-width: 640px;
}
.hero-badge { background: rgba(255, 255, 255, 0.12); color: #ffffff; }
.hero-title {
	margin: 0;
	font-size: clamp(38px, 5.5vw, 64px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-wrap: balance;
}
.hero-lede {
	margin: 0;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	max-width: 48ch;
	text-wrap: pretty;
}
.hero-cta { font-size: 16px; padding: 14px 30px; }

/* Page banner (inner pages) */
.page-banner {
	background-image: linear-gradient(90deg, rgba(2, 6, 20, 0.92) 0%, rgba(2, 6, 20, 0.6) 55%, rgba(2, 6, 20, 0.3) 100%), url('../images/slider/slider.jpg');
	background-size: cover;
	background-position: center right;
}
.page-banner-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: 720px;
	padding-top: clamp(56px, 8vw, 96px);
	padding-bottom: clamp(56px, 8vw, 96px);
}
.page-banner h1 {
	margin: 0;
	font-size: clamp(32px, 4.5vw, 52px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-wrap: balance;
}
.page-banner p {
	margin: 0;
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	text-wrap: pretty;
}

/* Section headings */
.section-title {
	margin: 0;
	font-size: clamp(28px, 3.4vw, 40px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1d1d1f;
}
.section-title span { color: #ba1c1f; }
.section-lede {
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: #6e6e73;
	text-wrap: pretty;
}

/* Two-column split section */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	padding-top: clamp(56px, 7vw, 96px);
	padding-bottom: clamp(56px, 7vw, 96px);
}
.split-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.split-figure { display: flex; justify-content: center; }
.split-figure img { max-width: 100%; height: auto; border-radius: 20px; }

/* Feature cards (home) */
.features { background: #f5f5f7; }
.features-inner { padding-top: 80px; padding-bottom: 80px; }
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.feature-card {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
	box-shadow: 0 20px 40px rgba(186, 28, 31, 0.08);
	transform: translateY(-4px);
}
.feature-card img { width: 52px; height: 52px; }
.feature-card h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #ba1c1f;
}
.feature-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #6e6e73;
	flex: 1;
	text-wrap: pretty;
}
.feature-card a { font-size: 14px; font-weight: 600; color: #ba1c1f; }
.feature-card a:hover { color: #8f1518; }

/* Value cards (about pillars) */
.card-section { background: #f5f5f7; }
.card-section-inner { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(56px, 7vw, 88px); }
.card-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}
.card-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.value-card {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.value-card:hover {
	box-shadow: 0 20px 40px rgba(186, 28, 31, 0.08);
	transform: translateY(-4px);
}
.value-card img { width: 64px; height: 64px; object-fit: contain; }
.value-card h3 { margin: 0; font-size: 19px; font-weight: 700; color: #1d1d1f; }
.value-card p { margin: 0; font-size: 15px; line-height: 1.6; color: #6e6e73; text-wrap: pretty; }

/* Definition rows (about service table) */
.info-list { border-top: 1px solid #e8e8ed; margin-top: 32px; }
.info-row {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid #e8e8ed;
}
.info-row dt { margin: 0; font-size: 16px; font-weight: 700; color: #ba1c1f; }
.info-row dd { margin: 0; font-size: 16px; line-height: 1.6; color: #6e6e73; }

/* Dark CTA band */
.cta { background: #2c2c2e; }
.cta-inner {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 48px;
	align-items: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.cta-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.cta-copy h3 {
	margin: 0;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
}
.cta-copy p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 60ch;
	text-wrap: pretty;
}
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: #ba1c1f;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 30px;
	border-radius: 999px;
}
.cta-btn:hover { background: #f5f5f7; color: #8f1518; }
.cta-figure { display: flex; justify-content: center; }
.cta-figure img { max-width: 100%; height: auto; }

/* Check list (service pages) */
.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.check-list li {
	position: relative;
	padding-left: 40px;
	font-size: 16px;
	line-height: 1.6;
	color: #6e6e73;
	text-wrap: pretty;
}
.check-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 2px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(186, 28, 31, 0.1);
	color: #ba1c1f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}
.check-list li span,
.check-list li strong { font-weight: 700; color: #1d1d1f; }

/* Mini feature blocks (about "choice" grid) */
.block-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mini-block {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	padding: 24px;
}
.mini-block h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; color: #ba1c1f; }
.mini-block p { margin: 0; font-size: 15px; line-height: 1.6; color: #6e6e73; }

/* Stats (home USP) */
.usp { background: #f5f5f7; }
.usp-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
	padding-top: 88px;
	padding-bottom: 88px;
}
.usp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}
.stat-card--offset { margin-top: 32px; }
.stat-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ba1c1f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-icon img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.stat-value {
	margin: 0;
	font-size: 44px;
	font-weight: 800;
	color: #ba1c1f;
	letter-spacing: -0.02em;
}
.stat-value em { font-style: normal; }
.stat-label { margin: 0; font-size: 15px; font-weight: 600; color: #1d1d1f; }
.usp-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.usp-promise { display: flex; align-items: center; gap: 12px; }
.usp-check {
	width: 28px;
	height: 28px;
	flex: none;
	border-radius: 50%;
	background: rgba(186, 28, 31, 0.1);
	color: #ba1c1f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}
.usp-promise p { margin: 0; font-size: 16px; font-weight: 600; color: #ba1c1f; }

/* Buttons */
.btn-md { font-size: 15px; padding: 12px 26px; }

/* Forms (contact) */
.form-card {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	padding: clamp(24px, 3vw, 40px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: #1d1d1f; }
.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	color: #1d1d1f;
	background: #f5f5f7;
	border: 1px solid #e8e8ed;
	border-radius: 10px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	outline: none;
	border-color: #ba1c1f;
	box-shadow: 0 0 0 3px rgba(186, 28, 31, 0.12);
	background: #ffffff;
}
.form-field .error { color: #ba1c1f; font-size: 12px; display: none; }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.form-success {
	grid-column: 1 / -1;
	margin: 0;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(0, 150, 60, 0.08);
	border: 1px solid rgba(0, 150, 60, 0.25);
	color: #067d33;
	font-weight: 600;
	font-size: 14px;
}

/* Contact info panel */
.contact-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 16px;
	padding: 18px 20px;
}
.contact-row-icon {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
	background: rgba(186, 28, 31, 0.1);
	color: #ba1c1f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
}
.contact-row p { margin: 0; font-size: 15px; line-height: 1.6; color: #6e6e73; }
.contact-row p strong { color: #1d1d1f; }
.contact-map {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #e8e8ed;
	min-height: 260px;
	flex: 1;
}
.contact-map iframe { border: 0; width: 100%; height: 100%; min-height: 260px; display: block; }

/* Blog cards */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.blog-card {
	background: #ffffff;
	border: 1px solid #e8e8ed;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
	box-shadow: 0 20px 40px rgba(186, 28, 31, 0.08);
	transform: translateY(-4px);
}
.blog-card-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	background: #f5f5f7;
	overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-thumb--contain img { object-fit: contain; }
.blog-card-body {
	padding: 24px 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.blog-card-date { font-size: 12px; color: #6e6e73; }
.blog-card-body h3 { margin: 0; font-size: 19px; line-height: 1.35; font-weight: 700; }
.blog-card-body h3 a { color: #1d1d1f; }
.blog-card-body h3 a:hover { color: #ba1c1f; }
.blog-card-body p { margin: 0; font-size: 15px; line-height: 1.55; color: #6e6e73; flex: 1; text-wrap: pretty; }
.blog-card-body .read-more { font-size: 14px; font-weight: 600; color: #ba1c1f; }
.blog-card-body .read-more:hover { color: #8f1518; }

/* Generic page section */
.page-section { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }

/* Footer */
.site-footer { background: #ffffff; border-top: 1px solid #e8e8ed; }
.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
	gap: 40px;
	padding-top: 72px;
	padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-brand img { height: 48px; width: auto; }
.footer-brand p { margin: 0; font-size: 15px; line-height: 1.55; color: #6e6e73; }
.footer-social { font-size: 14px; font-weight: 600; color: #ba1c1f; }
.footer-social:hover { color: #8f1518; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: #1d1d1f; }
.footer-col a { font-size: 14px; color: #6e6e73; }
.footer-col a:hover { color: #ba1c1f; }
.footer-col > span { font-size: 14px; color: #6e6e73; }
.footer-tags { display: flex; gap: 10px; font-size: 12px; color: #a1a1a6; padding-left: 12px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: #1d1d1f; }
.footer-contact p { margin: 0; font-size: 14px; line-height: 1.6; color: #6e6e73; }
.footer-contact p span { font-weight: 600; color: #1d1d1f; }
.footer-map {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #e8e8ed;
	min-height: 240px;
}
.footer-map iframe {
	border: 0;
	width: 100%;
	height: 100%;
	min-height: 240px;
	display: block;
}
.footer-bottom { border-top: 1px solid #e8e8ed; }
.footer-bottom-inner { padding-top: 20px; padding-bottom: 20px; }
.footer-bottom-inner p { margin: 0; font-size: 13px; color: #6e6e73; }

/* Responsive */
@media (max-width: 1080px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.card-grid-3 { grid-template-columns: 1fr 1fr; }
	.blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.site-nav-links { display: none; }
	.nav-toggle { display: flex; }
	.split,
	.usp-inner,
	.cta-inner { grid-template-columns: 1fr; }
	.split { gap: 40px; }
	.usp-inner { padding-top: 64px; padding-bottom: 64px; gap: 40px; }
	.cta-inner { padding-top: 56px; padding-bottom: 56px; gap: 32px; }
	.split-figure--lead { order: -1; }
	.cta-figure img { max-width: 320px; }
	.info-row { grid-template-columns: 1fr; gap: 6px; }
	.block-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.features-grid { grid-template-columns: 1fr; }
	.features-inner { padding-top: 56px; padding-bottom: 56px; }
	.usp-stats { grid-template-columns: 1fr; }
	.stat-card--offset { margin-top: 0; }
	.footer-grid { grid-template-columns: 1fr; padding-top: 48px; }
	.topbar-tag { display: none; }
	.card-grid-3 { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
}
