.hero-form {
	width: 100%;
}

.form-group input[type="text"],
.form-group input[type="email"] {
	position: relative;
	display: block;
	width: 100%;
	line-height: 26px;
	padding: 10px 20px;
	height: 50px;
	margin-bottom: 20px;
	color: #222222;
	font-size: 13px;
	font-weight: 400;
	border-radius: 6px;
	/* background-color: #eff3ff; */
	border: 1px solid #e3eaff;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	font-family: 'Lexend', sans-serif;
}

.theme-btn.submit-btn {
	background: linear-gradient(90deg, #ff0000, #d90000);
	color: #fff;
	width: 100%;
	padding: 14px 0;
	border: none;
	border-radius: 40px;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.form-step {
	display: none;
	animation: fadeIn 0.4s ease;
}

.form-step.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.custom-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.custom-radio {
	position: relative;
	cursor: pointer;
	border: 2px solid #ccc;
	border-radius: 8px;
	padding: 1rem;
	flex: 1 1 calc(100% - 1rem);
	text-align: center;
	background-color: #fff;
	transition: 0.3s ease;
	font-weight: 500;
}

.custom-radio input[type="radio"] {
	display: none;
}

.custom-radio.checked {
	border-color: #d4af37;
	background: #fffbe6;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
	color: #000;
}

.custom-radio:hover {
	border-color: #d4af37;
}

button[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}


*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--red: #e43133;
	--red2: #c62022;
	--redl: #fff0f0;
	--redm: #ffd6d6;
	--dark: #1a1a2e;
	--body-text: #4a4a6a;
	--light: #f8f8fc;
	--white: #fff;
	--border: #e8e8f0;
	--border2: #d0d0e0;
	--display: 'Plus Jakarta Sans', sans-serif;
	--body: 'Space Grotesk', sans-serif;
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--body);
	background: var(--white);
	color: var(--dark);
	overflow-x: hidden;
	line-height: 1.7;
	cursor: none
}

.cur {
	position: fixed;
	width: 8px;
	height: 8px;
	background: var(--red);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width .15s, height .15s
}

.cur-ring {
	position: fixed;
	width: 32px;
	height: 32px;
	border: 1.5px solid rgba(228, 49, 51, .3);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: all .1s ease
}

nav {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	padding: 0 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px
}

.nav-logo img {
	height: 34px;
	display: block
}

.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none
}

.nav-links a {
	font-size: 13px;
	font-weight: 500;
	color: var(--body-text);
	text-decoration: none;
	transition: color .2s
}

.nav-links a:hover {
	color: var(--red)
}

.nav-cta {
	background: var(--red);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background .2s;
	cursor: none
}

.nav-cta:hover {
	background: var(--red2)
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	border: none;
	background: none
}

.hamburger span {
	width: 22px;
	height: 2px;
	background: var(--dark);
	border-radius: 2px;
	transition: all .3s
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 54px;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, .98);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	padding: 1.25rem;
	z-index: 499;
	flex-direction: column;
	gap: 0
}

.mobile-menu.open {
	display: flex
}

.mobile-menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	padding: .85rem 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between
}

.mobile-menu a:last-child {
	border-bottom: none;
	margin-top: .5rem;
	background: var(--red);
	color: #fff;
	justify-content: center;
	border-radius: 9px;
	padding: .85rem;
	font-weight: 700
}

.hero {
	min-height: 92vh;
	padding: 2rem 3rem 1rem;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--white)
}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 48%;
	height: 100%;
	background: var(--light);
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 0
}

.hero-dots {
	position: absolute;
	top: 0;
	right: 0;
	width: 48%;
	height: 100%;
	background-image: radial-gradient(circle, rgba(228, 49, 51, .07) 1px, transparent 1px);
	background-size: 28px 28px;
	z-index: 0
}

.hero-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10rem;
	align-items: baseline;
	width: 100%;
	max-width: 100%
}

.hero-content {
	position: relative;
	z-index: 2
}

.hero-right {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
	max-width: 1200px
}

.hero-visual {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.hero-img-main {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block
}

.hero-img-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.hero-img-sm {
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .1)
}

.img-caption {
	font-size: 10px;
	font-weight: 700;
	color: var(--body-text);
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 4px
}

@media(max-width:900px) {
	.hero-inner {
		grid-template-columns: 1fr
	}

	.hero-visual {
		display: none
	}

	.hero-layout {
		grid-template-columns: 1fr
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--redl);
	border: 1px solid var(--redm);
	color: var(--red);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 1.5rem
}

.badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--red);
	animation: blink 2s infinite
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .3
	}
}

.hero h1 {
	font-family: var(--display);
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2px;
	margin-bottom: 1.25rem
}

.hero h1 .red {
	color: var(--red)
}

.hero-sub {
	font-size: 17px;
	color: var(--body-text);
	font-weight: 300;
	max-width: 480px;
	margin-bottom: 2rem
}

.hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	align-items: center
}

.btn-red {
	background: var(--red);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 28px;
	border-radius: 9px;
	text-decoration: none;
	border: none;
	cursor: none;
	transition: background .2s;
	box-shadow: 0 4px 18px rgba(228, 49, 51, .25)
}

.btn-red:hover {
	background: var(--red2)
}

.btn-wa {
	background: #25D366;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 22px;
	border-radius: 9px;
	text-decoration: none;
	cursor: none;
	display: flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 4px 18px rgba(37, 211, 102, .2)
}

.btn-wa svg {
	width: 15px;
	height: 15px;
	fill: #fff;
	flex-shrink: 0
}

.hero-call {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	transition: color .2s
}

.hero-call:hover {
	color: var(--red)
}

.hero-call svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5
}

.hero-stats {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 2rem
}

.stat-item {
	border-left: 2px solid var(--red);
	padding-left: 1rem
}

.stat-val {
	font-family: var(--display);
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1
}

.stat-lbl {
	font-size: 11px;
	color: var(--body-text);
	margin-top: 3px
}

.hero-apps {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 2.5rem
}

.app-lbl {
	font-size: 11px;
	font-weight: 700;
	color: var(--body-text);
	letter-spacing: .06em;
	text-transform: uppercase
}

.app-chip {
	font-size: 11px;
	background: var(--white);
	border: 1px solid var(--border2);
	color: var(--dark);
	padding: 4px 11px;
	border-radius: 6px
}

/* HERO QUICK FORM */
.hero-form {
	background: var(--white);
	border: 2px solid var(--red);
	border-radius: 16px;
	padding: 1.75rem;
	max-width: 440px;
	box-shadow: 0 8px 40px rgba(228, 49, 51, .18), 0 2px 8px rgba(0, 0, 0, .06);
	position: relative;
	z-index: 3
}

.hero-form::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 17px;
	background: linear-gradient(135deg, rgba(228, 49, 51, .12), transparent 60%);
	z-index: -1;
	pointer-events: none
}

.hf-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--red);
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 6px
}

.hf-inputs {
	display: flex;
	flex-direction: column;
	gap: 9px
}

.hf-inputs input {
	border: 1.5px solid var(--border2);
	border-radius: 8px;
	padding: 11px 13px;
	font-family: var(--body);
	font-size: 13px;
	color: var(--dark);
	background: var(--light);
	outline: none;
	transition: border-color .2s, box-shadow .2s
}

.hf-inputs input:focus {
	border-color: var(--red);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(228, 49, 51, .1)
}

.hf-btn {
	background: var(--red);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px;
	font-family: var(--body);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s, transform .15s, box-shadow .2s;
	width: 100%;
	box-shadow: 0 4px 16px rgba(228, 49, 51, .3)
}

.hf-btn:hover {
	background: var(--red2);
	transform: translateY(-1px);
	box-shadow: 0 6px 22px rgba(228, 49, 51, .4)
}

.hf-success {
	display: none;
	font-size: 13px;
	color: #1a7a3c;
	font-weight: 600;
	text-align: center;
	padding: 10px 0;
	background: #f0fdf4;
	border-radius: 8px;
	margin-top: 4px
}

.hf-note {
	font-size: 11px;
	color: var(--body-text);
	text-align: center;
	margin-top: .6rem
}

/* TICKER */
.ticker {
	overflow: hidden;
	background: var(--red);
	padding: .65rem 0
}

.ticker-track {
	display: flex;
	gap: 3rem;
	width: max-content;
	animation: tick 32s linear infinite
}

@keyframes tick {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

.t-item {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .9);
	white-space: nowrap;
	letter-spacing: .05em;
	display: flex;
	align-items: center;
	gap: 8px
}

.t-item::before {
	content: '';
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fff
}

section {
	padding: 2rem 3rem;
	position: relative
}

.sec-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: .75rem;
	display: flex;
	align-items: center;
	gap: 8px
}

.sec-tag::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--red)
}

h2.title {
	font-family: var(--display);
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.1;
	color: var(--dark);
	margin-bottom: .85rem
}

.subtitle {
	font-size: 15px;
	color: var(--body-text);
	max-width: 100%;
	font-weight: 300
}

/* WHY */
.why-sec {
	background: var(--light)
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
	gap: 1.1rem;
	gap: 1.25rem;
	margin-top: 2.5rem
}

.why-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.75rem;
	position: relative;
	overflow: hidden;
	transition: border-color .2s, transform .2s
}

.why-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s
}

.why-card:hover {
	border-color: var(--redm);
	transform: translateY(-3px)
}

.why-card:hover::before {
	transform: scaleX(1)
}

.why-icon {
	width: 42px;
	height: 42px;
	background: var(--redl);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem
}

.why-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2
}

.why-card h3 {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: .4rem
}

.why-card p {
	font-size: 13px;
	color: var(--body-text);
	line-height: 1.6
}

/* COMPARISON */
.comp-wrap {
	margin-top: 2.5rem;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden
}

.comp-head {
	display: grid;
	grid-template-columns: 150px 1fr 1fr 1fr;
	background: var(--light);
	padding: .7rem 1.5rem;
	border-bottom: 1px solid var(--border)
}

.comp-head span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--body-text)
}

.comp-row {
	display: grid;
	grid-template-columns: 150px 1fr 1fr 1fr;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border);
	align-items: center;
	transition: background .15s
}

.comp-row:last-child {
	border-bottom: none
}

.comp-row:hover {
	background: var(--light)
}

.comp-row.us {
	background: var(--redl);
	border-left: 3px solid var(--red)
}

.comp-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--dark)
}

.comp-cell {
	font-size: 12px;
	color: var(--body-text)
}

.comp-cell.yes {
	color: #1a7a3c;
	font-weight: 600
}

.comp-cell.no {
	color: #bbb
}

.comp-cell.us-val {
	color: var(--red);
	font-weight: 700
}

/* SERVICES */
.svc-sec {
	background: var(--light)
}

.svc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
	gap: 1.1rem;
	margin-top: 2.5rem
}

.svc {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.6rem;
	transition: border-color .2s, transform .2s;
	position: relative;
	overflow: hidden
}

.svc::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s
}

.svc:hover {
	border-color: var(--redm);
	transform: translateY(-2px)
}

.svc:hover::after {
	transform: scaleX(1)
}

.svc-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--red);
	margin-bottom: .75rem;
	text-transform: uppercase
}

.svc h3 {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: .35rem
}

.svc p {
	font-size: 12px;
	color: var(--body-text);
	line-height: 1.6;
	margin-bottom: .7rem
}

.pills {
	display: flex;
	gap: 5px;
	flex-wrap: wrap
}

.pill {
	font-size: 10px;
	font-weight: 600;
	background: var(--light);
	color: var(--body-text);
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid var(--border)
}

/* AI */
.ai-sec {
	background: var(--dark)
}

.ai-sec .sec-tag,
.ai-sec .sec-tag::before {
	color: #ff8080;
	background: #ff8080
}

.ai-sec h2.title {
	color: var(--white)
}

.ai-sec .subtitle {
	color: rgba(255, 255, 255, .45)
}

.ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
	margin-top: 2.5rem
}

.ai-card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	padding: 1.6rem;
	transition: border-color .2s;
	position: relative;
	overflow: hidden
}

.ai-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s
}

.ai-card:hover {
	border-color: rgba(228, 49, 51, .3)
}

.ai-card:hover::after {
	transform: scaleX(1)
}

.ai-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	color: rgba(228, 49, 51, .8);
	margin-bottom: .75rem;
	text-transform: uppercase
}

.ai-card h3 {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: .35rem
}

.ai-card p {
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	line-height: 1.7
}

.ai-badge {
	display: inline-flex;
	margin-top: .85rem;
	font-size: 10px;
	font-weight: 600;
	background: rgba(228, 49, 51, .12);
	color: #ff9090;
	padding: 4px 11px;
	border-radius: 100px;
	border: 1px solid rgba(228, 49, 51, .2)
}

/* PACKAGES */
.pkg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem
}

.pkg {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.75rem;
	transition: transform .2s
}

.pkg:hover {
	transform: translateY(-3px)
}

.pkg.hot {
	border: 2px solid var(--red);
	box-shadow: 0 8px 30px rgba(228, 49, 51, .12);
	position: relative
}

.pkg-badge {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 13px;
	border-radius: 100px;
	white-space: nowrap;
	letter-spacing: .05em
}

.pkg-name {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: .4rem
}

.pkg-title {
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--dark);
	letter-spacing: -.5px;
	margin-bottom: .2rem
}

.pkg-sub {
	font-size: 12px;
	color: var(--body-text);
	margin-bottom: 1.1rem
}

.pkg-feat {
	font-size: 12px;
	color: var(--body-text);
	line-height: 1.9;
	display: flex;
	gap: 6px
}

.pkg-feat::before {
	content: '✓';
	color: var(--red);
	font-weight: 700;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px
}

.pkg-btn {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1.25rem;
	font-family: var(--body);
	font-size: 13px;
	font-weight: 600;
	padding: 11px;
	border-radius: 9px;
	text-decoration: none;
	border: 2px solid var(--border2);
	color: var(--dark);
	transition: all .2s;
	cursor: none
}

.pkg-btn:hover {
	border-color: var(--red);
	color: var(--red)
}

.pkg.hot .pkg-btn {
	background: var(--red);
	color: #fff;
	border-color: var(--red)
}

.pkg.hot .pkg-btn:hover {
	background: var(--red2)
}

/* PROCESS */
.proc-sec {
	background: var(--light)
}

.proc-list {
	margin-top: 2.5rem;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	background: var(--white)
}

.proc {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 1.25rem;
	padding: 1.25rem 1.75rem;
	border-bottom: 1px solid var(--border);
	transition: background .15s
}

.proc:last-child {
	border-bottom: none
}

.proc:hover {
	background: var(--redl)
}

.proc-wk {
	font-size: 10px;
	font-weight: 700;
	color: var(--red);
	letter-spacing: .06em;
	text-transform: uppercase;
	padding-top: 3px
}

.proc h4 {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 3px
}

.proc p {
	font-size: 12px;
	color: var(--body-text);
	line-height: 1.6
}

/* WORK */
.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1.1rem;
	margin-top: 2.5rem
}

.work-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.4rem;
	transition: border-color .2s, transform .2s
}

.work-card:hover {
	border-color: var(--redm);
	transform: translateY(-3px)
}

.wcat {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: .5rem
}

.work-card h3 {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: .3rem
}

.work-card p {
	font-size: 12px;
	color: var(--body-text);
	line-height: 1.5;
	margin-bottom: .65rem
}

.wtech {
	font-size: 10px;
	font-weight: 600;
	background: var(--light);
	color: var(--body-text);
	padding: 3px 8px;
	border-radius: 5px;
	border: 1px solid var(--border)
}

/* TESTIMONIAL */
.testi-sec {
	background: var(--light)
}

.testi-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 2rem;
	max-width: 640px;
	margin: 2rem auto 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.stars {
	color: var(--red);
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: .85rem
}

.testi-text {
	font-family: var(--display);
	font-size: 17px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.65;
	color: var(--dark);
	margin-bottom: 1rem
}

.testi-by {
	font-size: 13px;
	font-weight: 600;
	color: var(--body-text);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

.testi-by::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--red)
}

/* CHAT SECTION */
.chat-sec {
	background: var(--white)
}

.chat-wrap {
	max-width: 640px;
	margin: 2rem auto 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 36px rgba(0, 0, 0, .07)
}

.chat-hd {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 1rem 1.4rem;
	background: var(--dark)
}

.online-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: glow 2s infinite
}

@keyframes glow {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, .4)
	}

	50% {
		box-shadow: 0 0 0 4px rgba(74, 222, 128, 0)
	}
}

.chat-hd-name {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	color: var(--white)
}

.chat-hd-sub {
	font-size: 10px;
	color: rgba(255, 255, 255, .45)
}

.chat-msgs {
	padding: 1.25rem;
	min-height: 240px;
	max-height: 340px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--light)
}

.msg {
	display: flex;
	gap: 8px;
	align-items: flex-start
}

.msg.user {
	flex-direction: row-reverse
}

.av {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 700
}

.av.bot {
	background: var(--redl);
	color: var(--red);
	border: 1px solid var(--redm)
}

.av.usr {
	background: var(--dark);
	color: var(--white)
}

.bubble {
	max-width: 82%;
	padding: 9px 13px;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.6
}

.msg.bot .bubble {
	background: var(--white);
	color: var(--dark);
	border: 1px solid var(--border);
	border-bottom-left-radius: 3px
}

.msg.user .bubble {
	background: var(--red);
	color: #fff;
	border-bottom-right-radius: 3px
}

.typing-wrap {
	display: flex;
	gap: 4px;
	align-items: center;
	padding: 9px 13px
}

.td {
	width: 5px;
	height: 5px;
	background: var(--border2);
	border-radius: 50%;
	animation: td 1.2s infinite
}

.td:nth-child(2) {
	animation-delay: .2s
}

.td:nth-child(3) {
	animation-delay: .4s
}

@keyframes td {

	0%,
	60%,
	100% {
		transform: translateY(0)
	}

	30% {
		transform: translateY(-5px)
	}
}

.chips {
	padding: 0 1.25rem .75rem;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	background: var(--light)
}

.chip {
	font-size: 11px;
	background: var(--white);
	color: var(--body-text);
	border: 1px solid var(--border2);
	padding: 4px 11px;
	border-radius: 100px;
	cursor: pointer;
	transition: all .15s;
	font-family: var(--body)
}

.chip:hover {
	border-color: var(--red);
	color: var(--red)
}

.chat-foot {
	padding: .85rem 1.25rem;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 9px;
	background: var(--white)
}

.chat-in {
	flex: 1;
	background: var(--light);
	border: 1.5px solid var(--border2);
	border-radius: 9px;
	padding: 9px 14px;
	font-family: var(--body);
	font-size: 13px;
	color: var(--dark);
	outline: none;
	transition: border-color .2s
}

.chat-in:focus {
	border-color: var(--red);
	background: var(--white)
}

.send-btn {
	background: var(--red);
	color: #fff;
	border: none;
	border-radius: 9px;
	padding: 9px 20px;
	font-family: var(--body);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s
}

.send-btn:hover {
	background: var(--red2)
}

.send-btn:disabled {
	opacity: .4;
	cursor: not-allowed
}

.lead-card {
	background: var(--redl);
	border: 1px solid var(--redm);
	border-radius: 9px;
	padding: 12px 15px;
	font-size: 12px;
	line-height: 2;
	color: var(--dark);
	margin: 4px 0
}

.lead-card .lead-title {
	font-weight: 700;
	color: var(--red);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px
}

.lead-status {
	color: #1a7a3c;
	font-weight: 700
}

/* CTA */
.cta-sec {
	background: var(--dark);
	text-align: center;
	padding: 5.5rem 3rem
}

.cta-sec h2 {
	font-family: var(--display);
	font-size: clamp(2.2rem, 4.5vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -2px;
	color: var(--white);
	max-width: 600px;
	margin: 1rem auto;
	line-height: 1.05
}

.cta-sec h2 span {
	color: var(--red)
}

.cta-sub {
	font-size: 14px;
	color: #fff;
	margin-bottom: 2rem;
	font-weight: 300
}

.cta-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap
}

footer {
	background: #0e0e1a;
	border-top: 1px solid rgba(255, 255, 255, .06)
}

.ft-main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 3rem;
	padding: 4rem 3rem 3rem;
	max-width: 1200px;
	margin: 0 auto
}

.ft-brand img {
	height: 32px;
	filter: brightness(0) invert(1);
	margin-bottom: 1.25rem;
	display: block
}

.ft-brand p {
	font-size: 13px;
	color: #fff;
	line-height: 1.8;
	max-width: 240px;
	margin-bottom: 1.5rem
}

.ft-contact-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: .6rem
}

.ft-contact-row svg {
	width: 14px;
	height: 14px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0
}

.ft-contact-row a,
.ft-contact-row span {
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	transition: color .2s
}

.ft-contact-row a:hover {
	color: var(--white)
}

.ft-col-title {
	font-family: var(--display);
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: .04em;
	margin-bottom: 1.1rem;
	position: relative;
	padding-bottom: .6rem
}

.ft-col-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--red);
	border-radius: 1px
}

.ft-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .55rem;
	padding-left: 0px;
}

.ft-links a {
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	transition: color .2s;
	display: flex;
	align-items: center;
	gap: 6px
}

.ft-links a::before {
	content: '';
	font-size: 10px;
	color: var(--red);
	opacity: 0;
	transition: opacity .2s
}

.ft-links a:hover {
	color: var(--white)
}

.ft-links a:hover::before {
	opacity: 1
}

.ft-apps {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: .5rem
}

.ft-app-chip {
	font-size: 10px;
	font-weight: 600;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 3px 10px;
	border-radius: 5px;
	transition: all .2s
}

.ft-app-chip:hover {
	background: rgba(228, 49, 51, .15);
	border-color: rgba(228, 49, 51, .3);
	color: rgba(255, 255, 255, .85)
}

.ft-bottom {
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding: 1.25rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .75rem
}

.ft-copy {
	font-size: 11px;
	color: #fff
}

.ft-badges {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap
}

.ft-badge {
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 5px
}

.ft-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--red)
}

.fade {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .6s ease, transform .6s ease
}

.fade.in {
	opacity: 1;
	transform: translateY(0)
}

.fd1 {
	transition-delay: .1s
}

.fd2 {
	transition-delay: .2s
}

.fd3 {
	transition-delay: .3s
}

/* ═══════════════════════════════════════════════
         RESPONSIVE — Large tablet (≤1100px)
         ═══════════════════════════════════════════════ */
@media(max-width:1100px) {
	nav {
		padding: 0 2rem
	}

	.hero {
		padding: 6rem 2rem 4rem
	}

	.hero-layout {
		gap: 2.5rem
	}

	.hero h1 {
		font-size: clamp(2.6rem, 4.5vw, 4rem)
	}

	section {
		padding: 4.5rem 2rem
	}

	.ft-main {
		padding: 3rem 2rem 2.5rem;
		gap: 2rem
	}

	.ft-bottom {
		padding: 1.1rem 2rem
	}

	.comp-head,
	.comp-row {
		grid-template-columns: 140px 1fr 1fr 1fr
	}

	.pkg-grid {
		grid-template-columns: 1fr 1fr 1fr
	}

	.why-grid {
		grid-template-columns: 1fr 1fr 1fr
	}
}

/* ═══════════════════════════════════════════════
         RESPONSIVE — Tablet (≤900px)
         ═══════════════════════════════════════════════ */
@media(max-width:900px) {

	/* HERO — stack to single column */
	.hero-layout {
		grid-template-columns: 1fr;
		gap: 0
	}

	.hero-bg {
		width: 100%;
		clip-path: none;
		opacity: .35
	}

	.hero-dots {
		width: 100%;
		opacity: .35
	}

	.hero-form {
		max-width: 100%
	}

	/* FOOTER — 2 col */
	.ft-main {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
		padding: 3rem 2rem 2rem
	}

	.ft-brand {
		grid-column: 1/-1
	}
}

/* ═══════════════════════════════════════════════
         RESPONSIVE — Small tablet / large phone (≤768px)
         ═══════════════════════════════════════════════ */
@media(max-width:768px) {

	/* ── NAV ────────────────────────────────────── */
	nav {
		padding: 0 1.25rem;
		height: 58px
	}

	.nav-links {
		display: none
	}

	.nav-cta {
		display: none
	}

	.hamburger {
		display: flex
	}

	/* ── HERO ───────────────────────────────────── */
	.hero {
		padding: 5.5rem 1.25rem 3rem;
		min-height: auto
	}

	.hero h1 {
		font-size: clamp(2.2rem, 8vw, 3.2rem);
		letter-spacing: -1.5px
	}

	.hero-sub {
		font-size: 15px;
		margin-bottom: 1.5rem;
		max-width: 100%
	}

	.hero-badge {
		font-size: 11px;
		padding: 5px 12px
	}

	.hero-actions {
		gap: 8px;
		margin-bottom: 1.25rem
	}

	.btn-wa {
		font-size: 13px;
		padding: 11px 18px
	}

	.hero-call {
		font-size: 13px
	}

	.hero-stats {
		gap: 1.25rem;
		margin-bottom: 1.5rem
	}

	.stat-val {
		font-size: 1.3rem
	}

	.stat-item {
		padding-left: .75rem
	}

	.hero-apps {
		margin-bottom: 1.75rem;
		gap: 5px
	}

	.app-chip {
		font-size: 10px;
		padding: 3px 9px
	}

	.hero-form {
		padding: 1.25rem;
		border-radius: 14px
	}

	.hf-btn {
		font-size: 13px;
		padding: 12px
	}

	/* ── SECTIONS ───────────────────────────────── */
	section {
		padding: 3.5rem 1.25rem
	}

	h2.title {
		font-size: clamp(1.7rem, 6vw, 2.4rem);
		letter-spacing: -1px
	}

	.subtitle {
		font-size: 14px
	}

	.sec-tag {
		font-size: 10px;
		letter-spacing: .1em
	}

	/* ── WHY GRID — 2 cols ──────────────────────── */
	.why-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem
	}

	.why-card {
		padding: 1.35rem
	}

	.why-card h3 {
		font-size: 14px
	}

	/* ── COMPARISON — hide 2 extra cols ────────── */
	.comp-wrap {
		border-radius: 10px
	}

	.comp-head {
		grid-template-columns: 1fr 1fr;
		padding: .6rem 1rem
	}

	.comp-row {
		grid-template-columns: 1fr 1fr;
		padding: .85rem 1rem
	}

	.comp-head span:nth-child(3),
	.comp-head span:nth-child(4),
	.comp-row .comp-cell:nth-child(3),
	.comp-row .comp-cell:nth-child(4) {
		display: none
	}

	.comp-name {
		font-size: 12px
	}

	.comp-cell {
		font-size: 11px
	}

	/* ── SERVICES — 2 col ───────────────────────── */
	.svc-grid {
		grid-template-columns: 1fr 1fr
	}

	/* ── AI GRID — 1 col ────────────────────────── */
	.ai-grid {
		grid-template-columns: 1fr
	}

	.ai-sec {
		padding: 3.5rem 1.25rem
	}

	.ai-card {
		padding: 1.4rem
	}

	/* ── PACKAGES — 1 col ──────────────────────── */
	.pkg-grid {
		grid-template-columns: 1fr
	}

	.pkg.hot {
		margin-top: .5rem
	}

	.pkg-badge {
		font-size: 9px
	}

	/* ── PROCESS ────────────────────────────────── */
	.proc {
		grid-template-columns: 1fr;
		gap: .25rem;
		padding: 1rem 1.25rem
	}

	.proc-wk {
		font-size: 9px;
		margin-bottom: .15rem
	}

	.proc h4 {
		font-size: 13px
	}

	.proc p {
		font-size: 12px
	}

	/* ── WORK GRID — 2 cols ─────────────────────── */
	.work-grid {
		grid-template-columns: 1fr 1fr;
		gap: .85rem
	}

	.work-card {
		padding: 1.1rem
	}

	/* ── TESTIMONIAL ────────────────────────────── */
	.testi-card {
		padding: 1.5rem;
		margin: 1.5rem 0 0
	}

	.testi-text {
		font-size: 15px
	}

	/* ── CHAT ───────────────────────────────────── */
	.chat-sec {
		padding: 3.5rem 1.25rem
	}

	.chat-wrap {
		margin: 1.5rem 0 0;
		border-radius: 12px
	}

	.chat-msgs {
		min-height: 220px;
		max-height: 300px
	}

	.bubble {
		font-size: 12px;
		padding: 8px 11px
	}

	.chat-foot {
		padding: .75rem 1rem;
		gap: 7px
	}

	.chat-in {
		font-size: 12px;
		padding: 8px 12px
	}

	.send-btn {
		padding: 8px 16px;
		font-size: 12px
	}

	/* ── CTA ─────────────────────────────────────── */
	.cta-sec {
		padding: 4rem 1.25rem
	}

	.cta-sec h2 {
		font-size: clamp(2rem, 7vw, 3rem);
		letter-spacing: -1.5px
	}

	.cta-btns {
		flex-direction: column;
		align-items: center;
		gap: 10px
	}

	.cta-btns .btn-wa,
	.cta-btns .btn-red {
		width: 100%;
		justify-content: center;
		text-align: center;
		max-width: 320px
	}

	/* ── FOOTER ─────────────────────────────────── */
	.ft-main {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
		padding: 2.5rem 1.25rem 2rem
	}

	.ft-brand {
		grid-column: 1/-1
	}

	.ft-brand p {
		max-width: 100%
	}

	.ft-bottom {
		padding: .85rem 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: .5rem
	}

	.ft-badges {
		flex-wrap: wrap;
		gap: .5rem
	}

	.ft-col-title {
		font-size: 12px;
		margin-bottom: .85rem
	}

	.ft-links a {
		font-size: 12px;
		gap: 5px
	}

	/* ── TICKER ─────────────────────────────────── */
	.ticker-track {
		animation-duration: 20s
	}

	.t-item {
		font-size: 11px
	}

	/* ── TECH STRIP ─────────────────────────────── */
	.tech-strip {
		gap: 1.5rem !important;
		padding: 1.5rem 1.25rem !important
	}
}

/* ═══════════════════════════════════════════════
         RESPONSIVE — Phone (≤480px)
         ═══════════════════════════════════════════════ */
@media(max-width:480px) {

	/* ── NAV ────────────────────────────────────── */
	nav {
		padding: 0 1rem;
		height: 54px
	}

	.nav-cta {
		display: none
	}

	/* ── HERO ───────────────────────────────────── */
	.hero {
		padding: 4.5rem 1rem 2.5rem
	}

	.hero h1 {
		font-size: 2rem;
		letter-spacing: -1px;
		line-height: 1.1
	}

	.hero-sub {
		font-size: 14px;
		margin-bottom: 1.25rem
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 8px
	}

	.btn-wa {
		justify-content: center;
		text-align: center
	}

	.hero-call {
		justify-content: center;
		text-align: center;
		border: 1.5px solid var(--border2);
		border-radius: 9px;
		padding: 11px;
		background: var(--white)
	}

	.hero-stats {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: .75rem;
		margin-bottom: 1.25rem
	}

	.stat-item {
		border-left: none;
		border-top: 2px solid var(--red);
		padding: 8px 0 0
	}

	.stat-val {
		font-size: 1.2rem
	}

	.hero-apps {
		margin-bottom: 1.5rem
	}

	.hero-form {
		border-radius: 12px;
		padding: 1.1rem;
		border-width: 1.5px;
		box-shadow: 0 6px 28px rgba(228, 49, 51, .14)
	}

	.hf-title {
		font-size: 11px
	}

	.hf-inputs input {
		font-size: 12px;
		padding: 10px 11px
	}

	.hf-btn {
		font-size: 13px;
		padding: 12px
	}

	/* ── SECTIONS ───────────────────────────────── */
	section {
		padding: 3rem 1rem
	}

	h2.title {
		font-size: 1.75rem;
		letter-spacing: -.75px
	}

	.subtitle {
		font-size: 13px
	}

	.sec-tag {
		font-size: 10px
	}

	/* ── WHY — 1 col ────────────────────────────── */
	.why-grid {
		grid-template-columns: 1fr
	}

	.why-card {
		padding: 1.25rem
	}

	/* ── COMPARISON — compact 2 col ────────────── */
	.comp-head,
	.comp-row {
		grid-template-columns: 100px 1fr;
		padding: .65rem .85rem
	}

	.comp-head span {
		font-size: 9px
	}

	.comp-name {
		font-size: 11px
	}

	.comp-cell {
		font-size: 10px
	}

	/* ── SERVICES — 1 col ───────────────────────── */
	.svc-grid {
		grid-template-columns: 1fr
	}

	.svc {
		padding: 1.35rem
	}

	/* ── AI ─────────────────────────────────────── */
	.ai-sec {
		padding: 3rem 1rem
	}

	.ai-card h3 {
		font-size: 15px
	}

	/* ── PACKAGES ───────────────────────────────── */
	.pkg {
		padding: 1.35rem
	}

	.pkg-title {
		font-size: 1.15rem
	}

	.pkg-feat {
		font-size: 11px
	}

	.pkg-btn {
		font-size: 12px;
		padding: 10px
	}

	/* ── PROCESS ────────────────────────────────── */
	.proc-list {
		border-radius: 10px
	}

	.proc {
		padding: .9rem 1rem
	}

	/* ── WORK — 1 col ───────────────────────────── */
	.work-grid {
		grid-template-columns: 1fr
	}

	/* ── CHAT ───────────────────────────────────── */
	.chat-sec {
		padding: 3rem 1rem
	}

	.chat-wrap {
		border-radius: 10px
	}

	.chat-hd {
		padding: .85rem 1.1rem
	}

	.chat-hd-name {
		font-size: 13px
	}

	.chat-msgs {
		min-height: 180px;
		max-height: 260px;
		padding: 1rem
	}

	.chip {
		font-size: 10px;
		padding: 3px 9px
	}

	.chat-foot {
		padding: .65rem .85rem;
		gap: 6px
	}

	.send-btn {
		padding: 8px 13px;
		font-size: 11px
	}

	/* ── CTA ─────────────────────────────────────── */
	.cta-sec {
		padding: 3.5rem 1rem
	}

	.cta-sec h2 {
		font-size: 1.9rem;
		letter-spacing: -1.25px
	}

	.cta-sub {
		font-size: 13px
	}

	/* ── FOOTER ─────────────────────────────────── */
	.ft-main {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 2rem 1rem 1.5rem
	}

	.ft-brand {
		grid-column: auto
	}

	.ft-bottom {
		padding: .75rem 1rem;
		text-align: center;
		align-items: center
	}

	.ft-badges {
		display: none
	}

	.ft-copy {
		font-size: 10px;
		text-align: center
	}

	.ft-apps {
		gap: 5px
	}

	.ft-app-chip {
		font-size: 9px;
		padding: 2px 8px
	}

	.ft-contact-row a,
	.ft-contact-row span {
		font-size: 12px
	}

	/* ── TICKER ─────────────────────────────────── */
	.ticker-track {
		animation-duration: 15s
	}

	/* ── TECH STRIP ─────────────────────────────── */
	.tech-strip {
		gap: 1.25rem !important;
		padding: 1.25rem 1rem !important
	}

	.tech-strip span {
		font-size: 10px
	}

	/* ── TIMELINE SVG — hide, keep step list ──── */
	.proc-timeline {
		display: none
	}
}

/* ═══════════════════════════════════════════════
         RESPONSIVE — Very small (≤360px)
         ═══════════════════════════════════════════════ */
@media(max-width:360px) {
	nav {
		height: 50px
	}

	.hero {
		padding: 4rem .85rem 2rem
	}

	.hero h1 {
		font-size: 1.75rem;
		letter-spacing: -.75px
	}

	.hero-badge {
		font-size: 10px;
		padding: 4px 10px
	}

	.hero-stats {
		gap: .5rem
	}

	.stat-val {
		font-size: 1.1rem
	}

	h2.title {
		font-size: 1.55rem;
		letter-spacing: -.5px
	}

	.comp-head,
	.comp-row {
		grid-template-columns: 88px 1fr;
		padding: .5rem .75rem
	}

	.hero-form {
		padding: 1rem;
		border-radius: 10px
	}

	.hf-inputs input {
		padding: 9px 10px;
		font-size: 11px
	}

	.pkg-grid,
	.svc-grid,
	.why-grid,
	.work-grid {
		grid-template-columns: 1fr
	}

	.ft-main {
		padding: 1.75rem .85rem 1.25rem
	}

	section {
		padding: 2.75rem .85rem
	}
}

@media(max-width:768px) {
	.logo {
		max-width: 140px;

	}
}

.logo {
	width: 200px;
}

.carousel-control-next,
.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: 0 0;

	filter: var(--bs-carousel-control-icon-filter);
	border: 0;
	opacity: 1;
	transition: opacity .15s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgb(209 52 56) !important;
}

@media(max-width:768px) {
	.mob_work_sec {
		margin: auto !important;
	}

	.carousel-control-next,
	.carousel-control-prev {
		width: 9%;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 1.5rem;
		height: 1.5rem;
	}

}