/* ----------  RESET / BASE  ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	color: #000;
	font-family: 'Inter', sans-serif;
	padding-inline: 1rem;
}

/* ----------  HERO  ---------- */
.hero {
	text-align: center;
	margin-top: 6vh;
}

.hero h1 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(3rem, 10vw, 9rem);
	letter-spacing: 0.05em;
	line-height: 1;
	margin: 0;
}

.hero .tagline {
	font-size: clamp(1rem, 4vw, 2.25rem);
	font-weight: 300;
	margin: 1.25rem 0 0;
}

/* ----------  HOW-IT-WORKS  ---------- */
.steps {
	width: 100%;
	max-width: 1000px;
	margin: clamp(3rem, 8vw, 6rem) auto 0;
}

.steps-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 6vw, 4rem);
	justify-items: center;
}

@media (max-width: 768px) {
	.steps-list {
		grid-template-columns: 1fr;
	}
}

.step-img-box {
	width: clamp(120px, 25vw, 220px);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;

	position: relative;
}

.step-img-box img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.circle {
	position: relative;
	z-index: 5;
	width: clamp(48px, 6vw, 80px);
	height: clamp(48px, 6vw, 80px);
	border-radius: 50%;
	background: #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
	margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.steps-caption {
	font-size: clamp(1rem, 4vw, 2rem);
	margin: clamp(2rem, 6vw, 3rem) 0 0;
	text-align: center;
}

/* ----------  APP STORE  ---------- */
.app-store {
	text-align: center;
	margin: clamp(4rem, 8vw, 6rem) auto;
}

.app-store img {
	width: 160px;
}

/* ----------  BILL OF MATERIALS  ---------- */
.bom {
	width: 100%;
	max-width: 920px;
	margin: clamp(4rem, 9vw, 7rem) auto 0;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 5vw, 3rem);
}

.bom-item {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2rem);
	justify-content: center;
}

@media (max-width: 600px) {
	.bom-item {
		flex-direction: column;
		text-align: center;
	}
}

.bom-img-box {
	width: clamp(160px, 28vw, 260px);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bom-img-box img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.bom-label {
	font-size: clamp(1rem, 3.5vw, 1.5rem);
	margin: 0;
}

.bom-summary {
	text-align: center;
	line-height: 1.6;
	font-size: clamp(1rem, 4vw, 1.75rem);
	margin-top: clamp(1rem, 4vw, 2rem);
}

.bom-summary .foot {
	font-size: 0.9em;
	opacity: 0.8;
}

/* ----------  VISION & MISSION  ---------- */
.vm {
	width: 100%;
	max-width: 1000px;
	margin: clamp(4rem, 9vw, 7rem) auto;
}

.vm-block {
	text-align: center;
	margin-bottom: clamp(3rem, 8vw, 5rem);
}

.vm-block h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 8vw, 4rem);
	margin: 0 0 clamp(2rem, 5vw, 3rem);
}

.vm-block p {
	font-size: clamp(1rem, 4vw, 2rem);
	margin: 0;
}

/* ----------  CARE & COMPLIANCE  ---------- */
.care {
	width: 100%;
	max-width: 1000px;
	margin: clamp(4rem, 9vw, 7rem) auto;
}

.care-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 6vw, 4rem);
	justify-items: center;
	text-align: center;
}

@media (max-width: 700px) {
	.care-list {
		grid-template-columns: 1fr;
	}
}

.care-img-box {
	width: clamp(120px, 22vw, 180px);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.care-img-box img {
	max-width: 85%;
	max-height: 85%;
	object-fit: contain;
}

.care-label {
	font-size: clamp(0.9rem, 3.5vw, 1.5rem);
	margin-top: clamp(1rem, 3vw, 1.5rem);
}

.care-label span[title] {
	text-decoration: underline dotted;
	cursor: help;
}

/* ----------  CONTACT FORM  ---------- */
#form-contact {
	width: 100%;
	max-width: 600px;
	margin: clamp(4rem, 9vw, 7rem) auto 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

#form-contact label {
	padding-left: 20px;
	position: relative;
	display: block;
	line-height: 40px;
}

#form-contact label input[type='radio'] {
	/* position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0; */
}

#form-contact input,
#form-contact textarea {
	width: 100%;
	padding: 1rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

#form-contact textarea {
	min-height: 150px;
	resize: vertical;
}

#form-submit {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	padding: 0.5rem 2rem;
	cursor: pointer;
	border: 2px solid #000;
	background: #fff;
	color: #000;
	transition: background 0.3s, color 0.3s;
	width: auto;
}

#form-submit:hover {
	background: #000;
	color: #fff;
}

.contact-submit {
	text-align: center;
}

#form-thankyou {
	margin-left: 1rem;
}

/* ----------  PRIVACY POLICY  ---------- */
.privacy {
	width: 100%;
	max-width: 800px;
	margin: clamp(4rem, 9vw, 7rem) auto 0;
	line-height: 1.6;
}

.privacy h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 8vw, 4rem);
	margin: 0 0 clamp(2rem, 5vw, 3rem);
}

.privacy p {
	font-size: clamp(1rem, 4vw, 1.25rem);
	margin: 0 0 1.5rem;
}

/* ----------  FOOTER  ---------- */
.footer {
	width: 100%;
	text-align: center;
	padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	font-size: clamp(0.85rem, 3vw, 1rem);
	border-top: 1px solid #e0e0e0;
	margin-top: auto;
}

.footer a {
	color: inherit;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.steps .moving-dot {
	top: 0;
	left: 0;
}

/* ----------  TEXWORLD  ---------- */
.texworld {
	position: relative;
	width: 100%;
	margin: clamp(4rem, 9vw, 7rem) 0;
	padding: clamp(4rem, 10vw, 8rem) 2rem;
	background: url('../assets/texworld-booths.jpg') no-repeat center center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.texworld::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.773);
	z-index: 1;
}

.texworld-content {
	position: relative;
	z-index: 2;
}

.texworld h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 6vw, 5rem);
	margin: 13rem auto;
}

.texworld h2 span {
	background-color: red;
	padding: 20px;
}

.texworld p {
	font-size: clamp(1.2rem, 4vw, 2.25rem);
	margin: 0;
	font-weight: 300;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.texworld .texworld-logo {
	width: 200px;
	background-color: red;
	position: absolute;
	top: 0;
	left: 20%;
	padding: 30px;
	z-index: 3;
	text-align: left;
}

.texworld .texworld-logo img {
	padding-bottom: 50px;
}

/* put this somewhere in site.css */
.video-wrapper {
	width: 100%;
	max-width: 1000px; /* limit if you like - optional */
	aspect-ratio: 16/9; /*  ✨ keeps 16 : 9 automatically */
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0; /* removes default iframe border */
}

section.video {
	width: 100%;
	max-width: 1000px;
}
