/* ----------------------------------------------------------------
	VeryMind.ai - Design System
	Based on Brand Guidelines (April 2024)
-----------------------------------------------------------------*/

/* ---- CSS Variables / Brand Tokens ---- */
:root {
	--vm-midnight: #3D405B;
	--vm-midnight-light: #4a4d6a;
	--vm-green: #5BBD8D;
	--vm-green-dark: #4aa87a;
	--vm-green-light: rgba(91, 189, 141, 0.12);
	--vm-zanahoria: #E07A5F;
	--vm-zanahoria-light: rgba(224, 122, 95, 0.1);
	--vm-mostaza: #F2CC8F;
	--vm-arena: #F4F1DE;
	--vm-white: #FFFFFF;
	--vm-gray-50: #f8f9fa;
	--vm-gray-100: #e9ecef;
	--vm-gray-600: #6c757d;
	--vm-text: #2d2d3a;
	--vm-text-light: #5a5a6e;
	--vm-radius: 12px;
	--vm-radius-lg: 20px;
	--vm-shadow: 0 4px 24px rgba(61, 64, 91, 0.08);
	--vm-shadow-lg: 0 8px 40px rgba(61, 64, 91, 0.12);
	--vm-shadow-hover: 0 12px 48px rgba(61, 64, 91, 0.16);
	--vm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Global Overrides ---- */
body {
	font-family: 'Montserrat', sans-serif !important;
	color: var(--vm-text);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif !important;
	color: var(--vm-midnight);
}

p, span, li, label, a {
	font-family: 'Montserrat', sans-serif !important;
}

::selection {
	background: var(--vm-green);
	color: var(--vm-white);
}

/* ---- Skip Navigation ---- */
.skip-nav {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--vm-midnight);
	color: var(--vm-white);
	padding: 8px 16px;
	z-index: 10000;
	transition: top 0.2s;
}

.skip-nav:focus {
	top: 0;
}

/* ---- Navigation ---- */
.header-row {
	flex-wrap: nowrap !important;
	align-items: center;
}

#logo {
	width: 160px;
	flex-shrink: 0;
}

.primary-menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

#header {
	transition: var(--vm-transition);
}

#header-wrap {
	background: transparent;
	backdrop-filter: blur(0);
	transition: var(--vm-transition);
}

#header.sticky-header #header-wrap {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 20px rgba(61, 64, 91, 0.06);
}

.menu-link div {
	font-weight: 500 !important;
	font-size: 0.9rem !important;
	letter-spacing: 0.3px;
	color: var(--vm-midnight) !important;
	transition: var(--vm-transition);
}

.menu-link:hover div,
.menu-item.current .menu-link div {
	color: var(--vm-green) !important;
}

/* ---- Hero Section ---- */
.hero-bg {
	background-image: url('../images/hero/1.svg');
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

/* Gradient overlay */
.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(244, 241, 222, 0.9) 0%, rgba(244, 241, 222, 0.6) 40%, rgba(244, 241, 222, 0.2) 100%);
	z-index: 0;
}

/* Grain texture overlay */
.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 200px;
	z-index: 0;
	pointer-events: none;
	opacity: 0.5;
}

.hero-bg .slider-inner {
	position: relative;
	z-index: 2;
}

.hero-bg h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--vm-midnight) !important;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

.hero-bg .lead {
	font-size: 1rem;
	color: var(--vm-text-light);
	line-height: 1.7;
	font-weight: 400;
	max-width: 520px;
}

/* Badge with shimmer effect */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--vm-green-light);
	color: var(--vm-green-dark);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}

.hero-badge::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { left: -100%; }
	50% { left: 100%; }
}

.hero-badge i {
	font-size: 0.7rem;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.slide-imgs {
	padding-top: 60px;
	position: relative;
	z-index: 0;
}

.slide-imgs .iphone-img {
	max-width: 80%;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 20px 40px rgba(61, 64, 91, 0.15));
	transition: transform 0.5s ease;
}

.slide-imgs .iphone-img:hover {
	transform: translateY(-8px);
}

/* Floating geometric shapes */
.hero-floating {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	animation: heroFloatIn 1s ease-out forwards;
}

.hero-float-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(91, 189, 141, 0.08) 0%, transparent 70%);
	top: 10%;
	right: -5%;
	animation-delay: 0.3s;
}

.hero-float-2 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(242, 204, 143, 0.12) 0%, transparent 70%);
	bottom: 20%;
	left: -3%;
	animation-delay: 0.6s;
}

.hero-float-3 {
	width: 120px;
	height: 120px;
	border: 2px solid rgba(91, 189, 141, 0.1);
	top: 25%;
	right: 35%;
	animation-delay: 0.9s;
}

@keyframes heroFloatIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.hero-float-1 { animation: heroFloatIn 1s ease-out 0.3s forwards, heroFloat 8s ease-in-out 1.3s infinite; }
.hero-float-2 { animation: heroFloatIn 1s ease-out 0.6s forwards, heroFloat 10s ease-in-out 1.6s infinite; }
.hero-float-3 { animation: heroFloatIn 1s ease-out 0.9s forwards, heroFloat 12s ease-in-out 1.9s infinite; }

@keyframes heroFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	animation: fadeInUp 0.8s ease-out 1.2s forwards;
	cursor: pointer;
	text-decoration: none;
}

.hero-scroll-indicator span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--vm-midnight);
	opacity: 0.5;
}

.hero-scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(61, 64, 91, 0.3);
	border-radius: 12px;
	position: relative;
}

.hero-scroll-mouse::before {
	content: '';
	width: 4px;
	height: 8px;
	background: var(--vm-green);
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%, 100% { top: 6px; opacity: 1; }
	50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateX(-50%) translateY(16px); }
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- Buttons ---- */
.btn-vm-primary {
	background: var(--vm-green) !important;
	color: var(--vm-white) !important;
	border: none;
	padding: 14px 32px;
	border-radius: var(--vm-radius);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.3px;
	transition: var(--vm-transition);
	box-shadow: 0 4px 16px rgba(91, 189, 141, 0.3);
}

.btn-vm-primary:hover {
	background: var(--vm-green-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(91, 189, 141, 0.4);
	color: var(--vm-white) !important;
}

.btn-vm-secondary {
	background: transparent !important;
	color: var(--vm-midnight) !important;
	border: 2px solid var(--vm-midnight) !important;
	padding: 12px 30px;
	border-radius: var(--vm-radius);
	font-weight: 600;
	font-size: 0.95rem;
	transition: var(--vm-transition);
}

.btn-vm-secondary:hover {
	background: var(--vm-midnight) !important;
	color: var(--vm-white) !important;
	transform: translateY(-2px);
}

.btn-vm-outline-green {
	background: transparent !important;
	color: var(--vm-green) !important;
	border: 2px solid var(--vm-green) !important;
	padding: 12px 30px;
	border-radius: var(--vm-radius);
	font-weight: 600;
	font-size: 0.95rem;
	transition: var(--vm-transition);
}

.btn-vm-outline-green:hover {
	background: var(--vm-green) !important;
	color: var(--vm-white) !important;
}

/* ---- Section Styles ---- */
.vm-section {
	padding: 64px 0;
}

.vm-section-arena {
	background: var(--vm-arena);
}

.vm-section-midnight {
	background: var(--vm-midnight);
}

.vm-section-white {
	background: var(--vm-white);
}

.vm-section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--vm-midnight);
	margin-bottom: 16px;
}

.vm-section-subtitle {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--vm-green);
	margin-bottom: 12px;
}

.vm-section-desc {
	font-size: 1.05rem;
	color: var(--vm-text-light);
	line-height: 1.75;
	max-width: 640px;
	margin: 0 auto;
}

/* ---- Values / Features Section ---- */
.section-cover-bg {
	background: url('../images/section/1.jpg') center center / cover;
	min-height: 300px;
	border-radius: 0;
}

.vm-features-dark {
	background: var(--vm-midnight);
	padding: 60px 50px;
}

.vm-features-dark h3 {
	color: var(--vm-white) !important;
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.vm-features-dark p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.7;
}

.vm-feature-item {
	position: relative;
	padding-left: 20px;
	margin-bottom: 32px;
}

.vm-feature-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 4px;
	height: 28px;
	background: var(--vm-green);
	border-radius: 2px;
}

.vm-feature-item:last-child {
	margin-bottom: 0;
}

/* ---- Product Cards ---- */
.vm-product-row {
	padding: 60px 0;
	border-bottom: 1px solid var(--vm-gray-100);
}

.vm-product-row:last-child {
	border-bottom: none;
}

.vm-product-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.vm-product-icon.green {
	background: var(--vm-green-light);
	color: var(--vm-green);
}

.vm-product-icon.orange {
	background: var(--vm-zanahoria-light);
	color: var(--vm-zanahoria);
}

.vm-product-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--vm-midnight);
	margin-bottom: 16px;
}

.vm-product-desc {
	font-size: 1rem;
	color: var(--vm-text-light);
	line-height: 1.75;
}

.vm-product-img {
	border-radius: var(--vm-radius-lg);
	box-shadow: var(--vm-shadow-lg);
	transition: var(--vm-transition);
	width: 100%;
}

.vm-product-img:hover {
	transform: translateY(-6px);
	box-shadow: var(--vm-shadow-hover);
}

.vm-check-list {
	list-style: none;
	padding: 0;
}

.vm-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	color: var(--vm-text-light);
}

.vm-check-list li i {
	color: var(--vm-green);
	margin-top: 3px;
	flex-shrink: 0;
}

/* ---- About Section ---- */
.about-section {
	padding-top: 64px;
}

.vm-about-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--vm-text-light);
}

.about-images {
	position: relative;
}

.about-img-logo {
	margin-bottom: 20px;
}

.about-logo {
	max-width: 180px;
}

/* ---- Stat / Trust Badges ---- */
.vm-stats {
	display: flex;
	gap: 48px;
	margin-top: 40px;
}

.vm-stat-item h4 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--vm-green);
	margin-bottom: 4px;
}

.vm-stat-item p {
	font-size: 0.85rem;
	color: var(--vm-gray-600);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	margin-bottom: 0;
}

/* ---- Contact Section ---- */
.contact-section {
	padding: 64px 0;
	background: var(--vm-midnight);
	position: relative;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(180deg, var(--vm-midnight) 0%, var(--vm-midnight-light) 100%);
	z-index: 0;
}

.contact-section .container {
	position: relative;
	z-index: 1;
}

.contact-section h2 {
	color: var(--vm-white) !important;
}

.contact-section .vm-section-subtitle {
	color: var(--vm-green);
}

.contact-section p {
	color: rgba(255, 255, 255, 0.6);
}

.heading-block-narrow {
	max-width: 640px;
}

.form-container-narrow {
	max-width: 740px;
}

.vm-form-card {
	background: var(--vm-white);
	border-radius: var(--vm-radius-lg);
	padding: 48px;
	box-shadow: var(--vm-shadow-lg);
	border: none;
}

.vm-form-card label {
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--vm-midnight);
	margin-bottom: 6px;
}

.vm-form-card .form-control {
	border: 2px solid var(--vm-gray-100);
	border-radius: var(--vm-radius);
	padding: 12px 16px;
	font-size: 0.95rem;
	transition: var(--vm-transition);
	background: var(--vm-gray-50);
}

.vm-form-card .form-control:focus {
	border-color: var(--vm-green);
	box-shadow: 0 0 0 4px rgba(91, 189, 141, 0.15);
	background: var(--vm-white);
}

.vm-form-card .form-control::placeholder {
	color: #adb5bd;
}

.btn-vm-submit {
	background: var(--vm-green) !important;
	color: var(--vm-white) !important;
	border: none;
	padding: 16px 32px;
	border-radius: var(--vm-radius);
	font-weight: 600;
	font-size: 1rem;
	width: 100%;
	transition: var(--vm-transition);
	letter-spacing: 0.3px;
}

.btn-vm-submit:hover {
	background: var(--vm-green-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(91, 189, 141, 0.35);
}

/* ---- Footer ---- */
.vm-footer {
	background: var(--vm-arena);
	padding: 48px 0 24px;
	border: none;
}

.vm-footer-brand {
	font-size: 0.95rem;
	color: var(--vm-text-light);
	line-height: 1.7;
}

.vm-footer-social a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--vm-midnight);
	color: var(--vm-white) !important;
	transition: var(--vm-transition);
	margin-left: 8px;
	font-size: 0.9rem;
}

.vm-footer-social a:hover {
	background: var(--vm-green);
	transform: translateY(-3px);
}

.vm-footer-bottom {
	background: var(--vm-midnight);
	padding: 20px 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.vm-footer-bottom a {
	color: rgba(255, 255, 255, 0.6) !important;
	transition: var(--vm-transition);
}

.vm-footer-bottom a:hover {
	color: var(--vm-green) !important;
}

/* ---- Divider ---- */
.vm-divider {
	width: 48px;
	height: 4px;
	background: var(--vm-green);
	border-radius: 2px;
	margin-bottom: 24px;
}

.vm-divider.center {
	margin-left: auto;
	margin-right: auto;
}

/* ---- Utility ---- */
.text-vm-green { color: var(--vm-green) !important; }
.text-vm-midnight { color: var(--vm-midnight) !important; }
.text-vm-zanahoria { color: var(--vm-zanahoria) !important; }
.bg-vm-arena { background: var(--vm-arena) !important; }
.bg-vm-midnight { background: var(--vm-midnight) !important; }
.bg-vm-green { background: var(--vm-green) !important; }

/* ---- GoToTop Button ---- */
#gotoTop {
	position: fixed !important;
	bottom: 30px;
	right: 30px;
	z-index: -1;
	opacity: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vm-green);
	color: var(--vm-white);
	border-radius: var(--vm-radius);
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(91, 189, 141, 0.4);
	transition: opacity 0.3s ease, background-color 0.2s ease, transform 0.2s ease;
}

#gotoTop:hover {
	background: var(--vm-midnight);
	transform: translateY(-3px);
}

body.gototop-active #gotoTop {
	z-index: 599;
	opacity: 1;
}

/* ---- Desktop Navigation (expanded) ---- */
body.is-expanded-menu .primary-menu-trigger {
	display: none;
}

body.is-expanded-menu .menu-container {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

body.is-expanded-menu .menu-item:not(:first-child) {
	border-top: none;
}

body.is-expanded-menu .menu-link {
	padding: 10px 16px;
}

/* ---- Mobile Menu ---- */
body:not(.is-expanded-menu) .primary-menu-trigger {
	display: flex;
}

body:not(.is-expanded-menu) .menu-container {
	display: none;
	width: 100%;
	flex-direction: column;
	background: var(--vm-white);
	border-radius: var(--vm-radius);
	box-shadow: var(--vm-shadow-lg);
	padding: 8px 0;
	margin-top: 8px;
}

/* d-block purgado del tema - requerido por functions.bundle.js */
body:not(.is-expanded-menu) .menu-container.d-block {
	display: flex !important;
}

body:not(.is-expanded-menu) .menu-link {
	padding: 12px 20px;
}

body:not(.is-expanded-menu) .menu-item:not(:first-child) {
	border-top: 1px solid var(--vm-gray-100);
}

/* ---- Hamburger Icon ---- */
.cnvs-hamburger {
	background: transparent;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.cnvs-hamburger-box {
	width: 20px;
	height: 16px;
	display: block;
	position: relative;
}

.cnvs-hamburger-inner,
.cnvs-hamburger-inner::before,
.cnvs-hamburger-inner::after {
	width: 20px;
	height: 2px;
	background-color: var(--vm-midnight);
	position: absolute;
	transition: transform 0.15s ease, top 0.1s ease, bottom 0.1s ease;
	border-radius: 1px;
}

.cnvs-hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}

.cnvs-hamburger-inner::before,
.cnvs-hamburger-inner::after {
	content: '';
	display: block;
}

.cnvs-hamburger-inner::before {
	top: -6px;
}

.cnvs-hamburger-inner::after {
	bottom: -6px;
}

/* ---- Counter Animation ---- */
.vm-stat-item h4 {
	transition: color 0.3s ease;
}

.vm-stat-item:hover h4 {
	color: var(--vm-midnight);
}

.vm-stat-item:hover p {
	color: var(--vm-green);
}

/* ---- Cookie Banner (design system) ---- */
.vm-cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--vm-midnight);
	color: #fff;
	padding: 16px 24px;
	font-size: 0.9rem;
	transform: translateY(100%);
	animation: cookieSlideUp 0.5s ease-out forwards;
}

.vm-cookie-banner.show {
	display: block;
}

.vm-cookie-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.vm-cookie-inner p {
	margin: 0;
	flex: 1;
	min-width: 200px;
	color: rgba(255, 255, 255, 0.85);
}

.vm-cookie-inner a {
	color: var(--vm-green) !important;
	text-decoration: underline;
}

.vm-cookie-actions {
	display: flex;
	gap: 8px;
}

.vm-cookie-accept {
	background: var(--vm-green);
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--vm-transition);
}

.vm-cookie-accept:hover {
	background: var(--vm-green-dark);
	transform: translateY(-1px);
}

.vm-cookie-reject {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--vm-transition);
}

.vm-cookie-reject:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

@keyframes cookieSlideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

/* ---- AOS Custom Delays ---- */
[data-aos] {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ----------------------------------------------------------------
	Responsive - Tablet
-----------------------------------------------------------------*/
@media (max-width: 991.98px) {
	.hero-bg h1 {
		font-size: 2rem;
	}

	.hero-bg .lead {
		font-size: 0.95rem;
	}

	.contact-section {
		padding: 48px 0;
	}

	.about-section {
		padding-top: 48px;
	}

	.vm-features-dark {
		padding: 40px 30px;
	}

	.vm-stats {
		gap: 32px;
	}

	.vm-form-card {
		padding: 32px;
	}

	.vm-product-row {
		padding: 36px 0;
	}

	.vm-section {
		padding: 48px 0;
	}
}

/* ----------------------------------------------------------------
	Responsive - Mobile
-----------------------------------------------------------------*/
@media (max-width: 767.98px) {
	#logo {
		width: 130px;
	}

	.hero-bg h1 {
		font-size: 1.7rem;
	}

	.hero-bg .lead {
		font-size: 0.9rem;
		max-width: 100%;
	}

	.vm-section-title {
		font-size: 1.5rem;
	}

	.slide-imgs .iphone-img {
		max-width: 280px;
		margin: 30px auto 0;
		display: block;
	}

	.hero-scroll-indicator {
		display: none;
	}

	.hero-floating {
		display: none;
	}

	.section-cover-bg {
		min-height: 220px;
	}

	.contact-section {
		padding: 36px 0;
	}

	.about-section {
		padding-top: 36px;
	}

	.heading-block-narrow {
		max-width: 100%;
	}

	.vm-form-card {
		padding: 24px;
	}

	.vm-features-dark {
		padding: 30px 24px;
	}

	.about-images {
		flex-direction: column;
		align-items: center;
	}

	.vm-stats {
		flex-wrap: wrap;
		gap: 24px;
	}

	.vm-stat-item {
		flex: 0 0 40%;
	}

	.vm-section-title {
		font-size: 1.5rem;
	}

	.vm-section {
		padding: 36px 0;
	}

	.vm-product-row {
		padding: 30px 0;
	}

	.vm-footer {
		text-align: center;
	}

	.vm-footer-social {
		margin-top: 16px;
	}
}

/* ----------------------------------------------------------------
	Responsive - Small Mobile
-----------------------------------------------------------------*/
@media (max-width: 575.98px) {
	.hero-bg h1 {
		font-size: 1.5rem;
	}

	.vm-section-title {
		font-size: 1.3rem;
	}

	.vm-form-card {
		padding: 20px 16px;
	}
}
