/* ==========================================================================
   Home v2 — Full-width landing page styles.
   Scoped under `.home-v2` to avoid conflicts with the parent theme.
   Loaded only when the "Home v2" page template is active
   (see wiilove_home_v2_enqueue_assets()).
   ========================================================================== */

/* ---------- Design tokens (scoped to .home-v2) ---------- */
.home-v2 {
	--primary: #c42f2f;
	--primary-dark: #a02020;
	--primary-light: #e85a5a;
	--dark: #0a0a0a;
	--dark-2: #1a1a1a;
	--gray-100: #f7f7f7;
	--gray-200: #e8e8e8;
	--gray-300: #cccccc;
	--gray-500: #888888;
	--gray-700: #444444;
	--white: #ffffff;
	--gold: #c9a84c;
	--gradient-primary: linear-gradient(135deg, #c42f2f 0%, #e85a5a 100%);
	--gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
	--radius: 12px;
	--radius-lg: 20px;
	--max-width: 1200px;

	font-family: var(--body-font, 'Montserrat'), 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: var(--dark);
	background: var(--white);
	overflow-x: hidden;
}

.home-v2 *,
.home-v2 *::before,
.home-v2 *::after { box-sizing: border-box; margin: 0; padding: 0; }

.home-v2 a        { text-decoration: none; color: inherit; }
.home-v2 img      { max-width: 100%; height: auto; display: block; }
.home-v2 ul,
.home-v2 ol       { list-style: none; }
.home-v2 button   { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }

/* A center-constrained content column. The class is intentionally
   re-defined here to keep it scoped to .home-v2 only. */
.home-v2 .container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.home-v2 .hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	background: var(--dark);
	padding: 0;
}

.home-v2 .slides-wrapper { position: relative; width: 100%; height: 100%; }

.home-v2 .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
	display: flex;
	align-items: center;
}

.home-v2 .slide.active { opacity: 1; z-index: 1; }

.home-v2 .slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.home-v2 .slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.home-v2 .slide-overlay.dark   { background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.45) 50%, rgba(10, 10, 10, 0.7) 100%); }
.home-v2 .slide-overlay.accent { background: linear-gradient(180deg, rgba(196, 47, 47, 0.2) 0%, rgba(196, 47, 47, 0.45) 60%, rgba(196, 47, 47, 0.7) 100%); }

.home-v2 .slide-content {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 50px 24px 60px;
	color: var(--white);
}

.home-v2 .slide-text { max-width: 1140px; }

.home-v2 .slide-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 28px;
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
}
.home-v2 .slide-badge .dot {
	width: 6px;
	height: 6px;
	background: var(--primary-light);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--primary-light);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.4; }
}

.home-v2 .slide h1 {
	display: flex;
	flex-direction: column;
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 200;
	line-height: 1.02;
	margin-bottom: 28px;
	letter-spacing: -.02em;
	max-width: 1140px;
}
.home-v2 .slide h1 .highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

.home-v2 .slide-sub {
	max-width: 720px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 300;
	margin-bottom: 48px;
}

.home-v2 .slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.home-v2 .btn-primary,
.home-v2 .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.home-v2 .btn-primary {
	background: var(--gradient-primary);
	color: var(--white);
	box-shadow: 0 8px 24px rgba(196, 47, 47, 0.35);
}
.home-v2 .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(196, 47, 47, 0.5);
}
.home-v2 .btn-primary span { transition: transform 0.3s ease; }
.home-v2 .btn-primary:hover span { transform: translateX(4px); }
.home-v2 .btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(8px);
}
.home-v2 .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--white);
}

.home-v2 .slide-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-v2 .slide-image-card {
	width: 100%;
	max-width: 480px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.home-v2 .slide-image-placeholder {
	aspect-ratio: 3 / 2;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 14px;
}
.home-v2 .slide-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: var(--radius);
	padding: 16px 20px;
}
.home-v2 .slide-stats-row .stat-item { text-align: center; }
.home-v2 .slide-stats-row .stat-num {
	font-size: 28px;
	font-weight: 300;
	color: var(--white);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -.01em;
}
.home-v2 .slide-stats-row .stat-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

.home-v2 .slider-arrows {
	position: absolute;
	top: 50%;
	left: 24px;
	right: 24px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	z-index: 3;
	pointer-events: none;
}
.home-v2 .slider-arrow {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-radius: 50%;
	font-size: 18px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	pointer-events: auto;
}
.home-v2 .slider-arrow:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.home-v2 .slider-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 3;
}
.home-v2 .slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}
.home-v2 .slider-dot.active {
	background: var(--white);
	width: 32px;
	border-radius: 5px;
}

/* ==========================================================================
   SECTION COMMON/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.home-v2 section:not(.hero-slider) { padding: 100px 0; }

.home-v2 .section-header { text-align: center; margin-bottom: 60px; }

.home-v2 .section-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 400;
	margin-bottom: 20px;
}
.home-v2 .section-label::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--primary);
}
.home-v2 .section-title {
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 250;
	color: var(--dark);
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}
.home-v2 .section-desc {
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray-500);
	font-weight: 300;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.home-v2 .about-section { background: var(--white); }
.home-v2 .about-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.home-v2 .about-image {
	aspect-ratio: 4 / 3;
	background: var(--gray-100);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
	font-size: 16px;
	position: relative;
	overflow: hidden;
}
.home-v2 .about-image .play-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	box-shadow: var(--shadow-md);
}
.home-v2 .about-image .play-btn::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent currentColor;
	margin: 0 auto;
}
.home-v2 .about-content .section-label { display: block; text-align: left; }
.home-v2 .about-content h3 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 250;
	color: var(--dark);
	line-height: 1.15;
	margin-bottom: 24px;
	letter-spacing: -.02em;
}
.home-v2 .about-content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--gray-700);
	font-weight: 300;
	margin-bottom: 16px;
}
.home-v2 .about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	margin-top: 24px;
}
.home-v2 .about-feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--gray-700);
}
.home-v2 .about-feature-item .check {
	color: var(--primary);
	font-weight: 400;
}

/* ==========================================================================
   CAPABILITIES (6 services)
   ========================================================================== */
.home-v2 .capabilities { background: var(--gray-100); }
.home-v2 .caps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.home-v2 .cap-card {
	background: var(--white);
	padding: 32px 28px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}
.home-v2 .cap-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.home-v2 .cap-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 20px;
}
.home-v2 .cap-icon.mat    { background: #fef3f3; }
.home-v2 .cap-icon.prod   { background: #fff7e6; }
.home-v2 .cap-icon.pack   { background: #f0f9ff; }
.home-v2 .cap-icon.design { background: #faf5ff; }
.home-v2 .cap-icon.qa     { background: #f0fdf4; }
.home-v2 .cap-icon.ship   { background: #fffbeb; }
.home-v2 .cap-card h4 {
	font-size: 18px;
	font-weight: 400;
	color: var(--dark);
	margin-bottom: 8px;
}
.home-v2 .cap-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray-500);
	font-weight: 300;
}

/* ==========================================================================
   MATERIALS (TPE / PVC)
   ========================================================================== */
.home-v2 .materials { background: var(--white); }
.home-v2 .materials-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.home-v2 .material-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--gray-200);
	background: var(--white);
	transition: all 0.3s ease;
}
.home-v2 .material-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.home-v2 .material-visual {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	font-weight: 200;
	letter-spacing: .15em;
	color: rgba(255, 255, 255, 0.5);
}
.home-v2 .material-visual.tpe { background: var(--gradient-primary); }
.home-v2 .material-visual.pvc { background: linear-gradient(135deg, #1e3a5f 0%, #4a7ba6 100%); }
.home-v2 .material-info { padding: 32px; }
.home-v2 .material-info h4 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 12px;
	color: var(--dark);
}
.home-v2 .material-info p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray-500);
	font-weight: 300;
	margin-bottom: 16px;
}
.home-v2 .material-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.home-v2 .material-tags span {
	padding: 4px 12px;
	background: var(--gray-100);
	color: var(--gray-700);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .04em;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.home-v2 .why-us {
	background: var(--gradient-dark);
	color: var(--white);
}
.home-v2 .why-us .section-label { color: var(--primary-light); }
.home-v2 .why-us .section-title { color: var(--white); }
.home-v2 .why-us .section-desc  { color: rgba(255, 255, 255, 0.6); }
.home-v2 .why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.home-v2 .why-item { text-align: center; }
.home-v2 .why-num {
	font-size: 56px;
	font-weight: 200;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 12px;
	line-height: 1;
	letter-spacing: -.02em;
}
.home-v2 .why-item h5 {
	font-size: 17px;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 8px;
}
.home-v2 .why-item p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	font-weight: 300;
}

/* ==========================================================================
   PROCESS (4 steps)
   ========================================================================== */
.home-v2 .process { background: var(--white); }
.home-v2 .process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}
.home-v2 .step {
	text-align: center;
	padding: 32px 24px;
	background: var(--gray-100);
	border-radius: var(--radius-lg);
	position: relative;
	transition: all 0.3s ease;
}
.home-v2 .step:hover {
	background: var(--white);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}
.home-v2 .step-num {
	font-size: 56px;
	font-weight: 200;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -.02em;
}
.home-v2 .step h5 {
	font-size: 18px;
	font-weight: 400;
	color: var(--dark);
	margin-bottom: 8px;
}
.home-v2 .step p {
	font-size: 14px;
	color: var(--gray-500);
	line-height: 1.7;
	font-weight: 300;
}

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */
.home-v2 .certs { background: var(--gray-100); }
.home-v2 .certs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.home-v2 .cert-card {
	background: var(--white);
	padding: 32px 24px;
	border-radius: var(--radius-lg);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--gray-200);
}
.home-v2 .cert-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.home-v2 .cert-icon {
	font-size: 40px;
	margin-bottom: 16px;
}
.home-v2 .cert-card h5 {
	font-size: 18px;
	font-weight: 400;
	color: var(--dark);
	margin-bottom: 8px;
}
.home-v2 .cert-card p {
	font-size: 14px;
	color: var(--gray-500);
	font-weight: 300;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.home-v2 .testimonials { background: var(--white); }
.home-v2 .testim-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.home-v2 .testim-card {
	background: var(--gray-100);
	padding: 32px 28px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}
.home-v2 .testim-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.home-v2 .testim-stars {
	color: #fbbf24;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.home-v2 .testim-text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gray-700);
	margin-bottom: 24px;
	font-style: italic;
	font-weight: 300;
}
.home-v2 .testim-author { display: flex; align-items: center; gap: 12px; }
.home-v2 .testim-avatar {
	width: 44px;
	height: 44px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
}
.home-v2 .testim-name { font-size: 14px; font-weight: 400; color: var(--dark); }
.home-v2 .testim-role { font-size: 12px; color: var(--gray-500); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.home-v2 .faq-section { background: var(--gray-100); }
.home-v2 .faq-list { max-width: 800px; margin: 0 auto; }
.home-v2 .faq-item {
	background: var(--white);
	border-radius: var(--radius);
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}
.home-v2 .faq-item:hover { box-shadow: var(--shadow-sm); }
.home-v2 .faq-question {
	width: 100%;
	text-align: left;
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.home-v2 .faq-question .arrow {
	color: var(--primary);
	transition: transform 0.3s ease;
	font-size: 12px;
}
.home-v2 .faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.home-v2 .faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray-700);
	font-weight: 300;
	transition: all 0.3s ease;
}
.home-v2 .faq-item.open .faq-answer {
	padding: 0 24px 20px;
	max-height: 400px;
}

/* ==========================================================================
   CONTACT CTA
   ========================================================================== */
.home-v2 .contact-cta {
	background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #faf5ff 100%);
}
.home-v2 .cta-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: start;
}
.home-v2 .cta-left .section-label { display: block; text-align: left; }
.home-v2 .cta-left h2 {
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 250;
	color: var(--dark);
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}
.home-v2 .cta-left > p {
	font-size: 16px;
	color: var(--gray-500);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 32px;
}
.home-v2 .cta-contacts { display: flex; flex-direction: column; gap: 20px; }
.home-v2 .cta-contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
}
.home-v2 .cta-contact-item .icon {
	width: 48px;
	height: 48px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow: var(--shadow-sm);
	flex-shrink: 0;
}
.home-v2 .cta-contact-item .label {
	font-size: 12px;
	color: var(--gray-500);
	margin-bottom: 2px;
}
.home-v2 .cta-contact-item .text {
	font-size: 15px;
	font-weight: 400;
	color: var(--dark);
}

.home-v2 .cta-form {
	background: var(--white);
	padding: 36px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}
.home-v2 .cta-form h4 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--dark);
}
.home-v2 .form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.home-v2 .form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	font-size: 14px;
	font-family: inherit;
	background: var(--white);
	color: var(--dark);
	transition: all 0.2s ease;
}
.home-v2 .form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(196, 47, 47, 0.1);
}
.home-v2 .form-input.full { grid-column: 1 / -1; }
.home-v2 .form-input::placeholder { color: var(--gray-500); }
.home-v2 .form-submit {
	grid-column: 1 / -1;
	background: var(--gradient-primary);
	color: var(--white);
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 400;
	letter-spacing: .04em;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(196, 47, 47, 0.25);
}
.home-v2 .form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(196, 47, 47, 0.4);
}
.home-v2 .form-status {
	grid-column: 1 / -1;
	font-size: 14px;
	color: var(--gray-500);
	margin-top: 8px;
	min-height: 20px;
}
.home-v2 .form-status:not(:empty) { color: var(--primary); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.home-v2 .caps-grid,
	.home-v2 .why-grid,
	.home-v2 .process-steps,
	.home-v2 .certs-grid,
	.home-v2 .testim-grid { grid-template-columns: repeat(2, 1fr); }

	.home-v2 .materials-grid { grid-template-columns: 1fr; }

	.home-v2 .cta-grid,
	.home-v2 .about-grid { grid-template-columns: 1fr; }

	.home-v2 .slide-content { padding: 50px 24px 60px; }
}

@media (max-width: 768px) {
	.home-v2 section { padding: 60px 0; }

	.home-v2 .hero-slider { min-height: 100vh; height: auto; }

	.home-v2 .caps-grid,
	.home-v2 .why-grid,
	.home-v2 .process-steps,
	.home-v2 .certs-grid,
	.home-v2 .testim-grid,
	.home-v2 .form-grid { grid-template-columns: 1fr; }

	.home-v2 .about-features { grid-template-columns: 1fr; }

	.home-v2 .slide-content { padding: 80px 20px 40px; }
	.home-v2 .slide h1 { font-size: 32px; }
	.home-v2 .slide h1 br { display: none; }
	.home-v2 .slide-sub { font-size: 15px; }
}

/* Override GeneratePress container width on the v2 template so the
   full-bleed sections can use the whole viewport.
   IMPORTANT: scope is limited to the CONTENT area (#page / .site-content).
   The header (.site-header, .inside-header, .inside-navigation) keeps
   its default 1200px centering so the logo + nav stay aligned with
   every other page on the site. */
.home-v2-page #page.site.grid-container,
.home-v2-page #page .grid-container,
.home-v2-page .site-content,
.home-v2-page .content-area,
.home-v2-page .site-main,
.home-v2-page .inside-article,
.home-v2-page .entry-content {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Restore header's 1200px container and proper logo/nav centering,
   which the rule above accidentally overrode. */
.home-v2-page .site-header .inside-header,
.home-v2-page .site-header .inside-navigation {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ==========================================================================
   HOME V2: shrink header + reduce black bar
   ========================================================================== */
.home-v2-page .site-header .inside-header {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.home-v2-page .site-header {
	min-height: 60px;
}
