*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #CC0033;
  --black:       #2C2B30;
  --green:       #006666;
  --white-bg:    #fff;
  --grey-bg:    #f5f5f5;
  --font-body:  'arial', sans-serif;
}

body { 
	font-family: var(--font-body); 
	color: var(--black); 
	font-size: 16px; 
	line-height: 1.75; 
	font-weight: 500;
}
h1,h2,h3{
	font-weight: 500;
}
.white-bg{
	background-color:var(--white-bg);
}
.grey-bg{
	background-color:var(--grey-bg);
}
.img-fluid{
	max-width:100%;
}
.red { 
	color: var(--red);
}
.green { 
	color: var(--green);
}




/* ── HEADER ── */
header {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%;
  z-index: 1000;
  background: var(--grey-bg); 
  padding: 15px 0px;
}
.head-container{
	max-width: 1280px;
	margin:auto;
}
.logo {
	display: flex; 
	align-items: center; 
	gap: 6px; 
	text-decoration: none;
}
.logo img{ 
	width: 160px;
}

/* ── HERO ── */
.hero {
  position: relative; 
  height: 520px; 
  overflow: hidden;
  margin-top: 57px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.hero video {
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%;
  object-fit: cover;
}
/* White overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.40);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.hero-badge {
  width: 110px; height: 110px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 80px 0px 10px;
}
.breadcrumb .container{  
  border-bottom: 1px solid var(--black);
  padding-bottom: 15px;
}
.breadcrumb .breadcrumb_last {
	text-decoration: none; 
	font-weight: 500;
}

/* ── SHARED LAYOUT ── */
.container { max-width: 1024px; margin: 0 auto;}

section { 
	padding: 60px 0;
}

/* ── INTRO SECTION ── */
.intro { 
	padding: 50px 0 10px; 
}
.intro .container h2 {
  font-size: 21px; 
  margin-bottom: 20px;
}
.intro .container p { 
	margin-bottom: 20px;
}

.full-robot-img{
	padding-top:30px;
}
.full-robot-img img{
  width:100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}

/* ── TWO-COL SECTIONS ── */
.two-col { display: flex; gap: 40px; align-items: flex-start; }
.two-col.reverse { flex-direction: row-reverse; }

/* Left image column */
.col-left {
  width: 36%;
}
.col-left h2 {
  font-size: 21px;
  line-height: 1.25;
}
.col-img {
  flex: 0 0 220px;
  /* Replace with <img> */
  min-height: 240px; background: #e0e0e0;
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 12px; letter-spacing: 1px;
}
.col-img img { width: 100%; height: auto; display: block; border-radius: 4px; }


/* Right text column */
.col-text {
	flex: 1;
}
.col-text h2 {
  font-size: 21px;
  margin-bottom: 20px;
}
.col-text p {
	margin-bottom: 20px;
}
.col-text p:last-child {
	margin-bottom: 0px;
}

/* Check list */
.check-list { list-style: none; margin: 12px 0 16px; }
.check-list li {
  position: relative; 
  padding-left: 30px;
  margin-bottom: 6px;
}
.check-list li::before {
  content: '';
  position: absolute; 
  left: 0; 
  top: 4px;
  width: 17px; 
  height: 17px; 
  border-radius: 100%;
  background: var(--black);  
}

.check-list li::after {
  content: '';
  position: absolute; 
  left: 5.5px;
  top: 6.5px;
  width: 6px; 
  height: 9px;
  border: 2.3px solid #fff;
  border-top: none; 
  border-left: none;
  transform: rotate(45deg);
}

.icon-img { width: 150px;}
.safety-heding{
	margin-top:60px;
}


/* ── NEWSLETTER ── */
.newsletter {
  display: flex; align-items: center; gap: 180px; padding-bottom: 30px;
}
.newsletter-label {  
  color: var(--red); 
  line-height: 1.5;
  font-weight: 600;
}
.newsletter-label strong { 
	display: block; 
	font-weight: 600; 
}
.newsletter-form { 
	display: flex; 
	gap: 60px; 
	flex: 1; 
}
.newsletter-form input {
  flex: 1; 
  padding: 15px 0px; 
  border: none; 
  border-bottom: 1px solid var(--black);
  outline: none;
  color: var(--black); 
  background-color: transparent; 
  font-style: italic;
  font-size: 14px;
}
.newsletter-form input::placeholder {
	color: var(--black);
}
.newsletter-form button {
  background: transparent; border: none; cursor: pointer;  
  display: flex; align-items: center;
}
.newsletter-form button img { width: 32px;}

/* ── FOOTER ── */
footer { 
	background: var(--grey-bg); 
	padding: 50px 0px 30px;
	font-size: 14px;
}
.ft-container{
	max-width:1280px;
	margin:auto;
} 
footer .container{
	max-width:850px;
	margin:auto;
} 
.footer-body {
  border-bottom: 1px solid var(--white-bg); 
  border-top: 1px solid var(--white-bg);
  padding: 30px 0 30px;
}
.footer-body .container{
  display: flex; 
  align-items: flex-start; 
  justify-content: space-between;  
}
.footer-body h4 {
  font-size: 14px; 
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-contact address {
  font-style: normal; line-height: 1.85;
}
.footer-contact a { color: var(--black); text-decoration: none; }
.footer-contact a:hover { color: var(--red); }

.footer-social { text-align: left; }

.social-icons { display: flex; gap: 12px; margin-top: 26px;}
.social-icon {
  width: 40px; 
  height: 40px; 
  border-radius: 100%;
  background: var(--black); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-decoration: none; 
  transition: .2s;
}
.social-icon:hover { background: var(--red); }
.social-icon svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
  padding-top: 30px; text-align: center;
}
.footer-links {
  display: flex; gap: 6px; justify-content: center;
  align-items: center; flex-wrap: wrap; margin-bottom: 4px;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; color: var(--black);}
.footer-links a {
  color: var(--black); font-weight: 600; text-decoration: none;
}
.footer-links a:hover { color: var(--red); }
.footer-links .sep { color: var(--black);}


@media (max-width: 1024px) {
    .head-container {
        max-width: 940px;
    }
	.container {
        max-width: 800px;
    }
	.ft-container {
        max-width: 940px;
    }
	.logo img {
		width: 130px;
	}
}

@media (max-width: 992px) {
	body{
		font-size:14px;
	}
    .head-container {
        max-width: 700px;
    }
	.container {
        max-width: 670px;
    }
	.ft-container {
        max-width: 700px;
    }

	.full-robot-img img {
		height: 400px;
	}
	.newsletter {
		gap: 100px;
	}
	.newsletter-form {
		gap: 30px;
	}
}

@media (max-width: 700px) {
	body{font-size:13px;}
	h2{font-size:15px !important;}

	.head-container {max-width: 100%;}
	.container {max-width: 92%;}
	.ft-container {max-width: 100%;}
	footer .container{max-width: 92%;}

	header{padding:16px;}
	.logo img {width: 100px;}

	.hero {height: 350px;}
	.hero-badge {width: 80px; height: 80px;}
	
	.breadcrumb {padding: 40px 0px 10px;}

	section {padding: 40px 0;}
	.intro {padding: 30px 0 10px;}

	.full-robot-img {padding-top: 10px;}
	.full-robot-img img {height: 250px;}

	.two-col {gap: 20px; flex-direction: column;}
	.col-left {width: 100%;}

	.icon-img {width: 100px;}
	.safety-heding {margin-top: 30px;}

	.newsletter {flex-direction: column; gap:10px; align-items: start;}
	.newsletter-form {width: 100%;}
	
	footer {font-size: 12px;}
	.footer-body .container{flex-direction: column; gap: 30px;}
	.footer-links {row-gap: 0px;}
	
	.footer-social {text-align: center; width: 100%;}
	.social-icons {justify-content: center;}

	.footer-bottom {font-size: 11px;}
	
}