/* =========================
FILE: style.css
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f3f3f3;
  color:#111827;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* TOP BAR */

.top-bar{
  background:#003b9d;
  color:#fff;
  text-align:center;
  padding:8px 15px;
  font-size:12px;
  font-weight:600;
}

/* HERO */

.hero{
  background:#fff;
  padding:50px 0 90px;
  text-align:center;
}

.hero-title{
  font-family:'Anton',sans-serif;
  line-height:.88;
}

.hero-black {
	display: block;
	font-size: 160px;
	color: #08152f;
	margin-bottom: 38px;
}

.hero-middle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-bottom: 8px;
}

.hero-middle span{
  font-size:155px;
}

.hero-blue{
  color:#002E85;
}

.hero-red{
  color:#CC0000;
}

.hero-bottom{
  display:block;
  font-size:155px;
}

.hero-text{
  margin-top:26px;
  font-size:30px;
  color:#4b5563;
}

.hero-buttons{
  margin-top:42px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.phone-btn{
	font-family:'Anton',sans-serif;
  text-decoration:none;
  color:#003b9d;
  font-weight:400;
  font-size:36px;
}

.phone-btn svg {
	width: 40px;
	height: 40px;
}

.main-btn {
	background: #df0000;
	color: #fff;
	text-decoration: none;
	padding: 32px 40px;
	border-radius: 10px;
	font-weight: 700;
	transition: .3s;
	box-shadow: 0 8px 18px rgba(223,0,0,.25);
	font-size: 20px;
}

.main-btn:hover{
  transform:translateY(-2px);
}

/* SAVINGS */

.savings {
	padding: 80px 0;
	background: #F8FAFC;
}

.section-title{
  text-align:center;
  font-family:'Anton',sans-serif;
  letter-spacing:1px;
  color:#002E85;
  font-size:72px;
}

.section-line{
  width:80px;
  height:4px;
  background:#df0000;
  margin:8px auto 50px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.offer-card{
  position:relative;
  background:#fff;
  border-radius:14px;
  padding:24px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.card-number {
	font-family:'Anton',sans-serif;
	position: absolute;
	top: -40px;
	right: -10px;
	font-size: 120px;
	font-weight: 400;
	color: #F1F3F8;
}

.card-icon{
  width:64px;
  height:64px;
  border-radius:12px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.card-icon svg {
	color: #CB0000;
}
.offer-card h3 {
	font-size: 30px;
	line-height: 1.35;
	margin-bottom: 16px;
	font-family: 'Inter',sans-serif;
	font-weight: 700;
}

.offer-card p{
  color:#4b5563;
  line-height:1.7;
}

.red-text{
  color:#CC0000;
}

/* DISCOUNT */

.discount-section{
  background:#003b9d;
  border-top:8px solid #CC0000;
  border-bottom:8px solid #CC0000;
  padding:48px 0;
}

.discount-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.discount-left h3 {
	font-family:'Anton',sans-serif;
	color: #fff;
	font-size: 36px;
}

.discount-left p{
  color:#fff;
}

.discount-tags{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.discount-tags span{
  display:flex;
  align-items:center;
  gap:8px;

  background:rgba(255,255,255,.12);
  color:#fff;

  padding:12px 18px;
  border-radius:8px;

  font-size:14px;
  font-weight:600;
  line-height:1;
}

.discount-tags span svg{
  width:16px;
  height:16px;

  flex-shrink:0;
}
/* FORM */

.form-section{
  padding:90px 0;
}

.form-card{
  max-width:950px;
  margin:auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-header{
  background:#061331;
  text-align:center;
  padding:45px 30px;
}

.form-header h2{
  font-family:'Anton',sans-serif;
  color:#fff;
  font-size:60px;
}

.form-header p {
	color: #d1d5db;
	font-size: 20px;
}

form{
  padding:35px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.form-group{
  margin-bottom:28px;
}

.form-group label{
  display:block;
  margin-bottom:12px;
  font-size:15px;
  font-weight:700;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid #d5dbe4;
  background:#f8fafc;
  border-radius:10px;
  padding:14px;
  font-size:16px;
  outline:none;
}

.form-group textarea{
  min-height:140px;
  resize:vertical;
  font-family:'Inter',sans-serif;
}

/* OFFER CHECKBOX */

.offer-title{
  margin-bottom:20px !important;
}

.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.checkbox-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  padding:24px;
  border:1px solid #d7dfea;
  border-radius:18px;
  background:#fff;
  cursor:pointer;
  transition:.3s;
}

.checkbox-item:hover{
  border-color:#003b9d;
}

.checkbox-item input {
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	min-width: 22px;
	border: 2px solid #002E85;
	border-radius: 7px;
	background: #fff;
	cursor: pointer;
	position: relative;
	padding: 0 !important;
	margin-right: 7px;
}

.checkbox-item input:checked{
  background:#003b9d;
}

.checkbox-item input:checked::after{
  content:"✓";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-55%);
  color:#fff;
  font-size:16px;
  font-weight:700;
}

.checkbox-item span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

/* SUBMIT */

.submit-btn {
	width: 100%;
	border: none;
	background: #df0000;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
	margin-top: 15px;
}

.submit-btn:hover {
	transform: translateY(-2px);
	background: #9F0712;
}

/* FOOTER */

.footer{
  background:#061331;
  padding:70px 0;
  text-align:center;
}

.footer-logo {
	width: 180px;
	margin: 0 auto 28px;
	border-radius: 10px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.footer-links a, .footer-links span {
	color: #E1E7EF;
	text-decoration: none;
	font-size: 18px;
}

.copyright,
.footer-small{
  color:#9ca3af;
  font-size:14px;
  line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

  .hero-black{
    font-size:100px;
  }

  .hero-middle span,
  .hero-bottom{
    font-size:100px;
  }

  .section-title{
    font-size:60px;
  }

  .form-header h2{
    font-size:54px;
  }

}

@media(max-width:768px){

  .card-grid,
  .checkbox-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .discount-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-black{
    font-size:72px;
  }

  .hero-middle{
    gap:10px;
  }

  .hero-middle span,
  .hero-bottom{
    font-size:60px;
  }

  .hero-text{
    font-size:18px;
  }

.section-title {
	font-size: 46px;
	line-height: 50px;
}

  .form-header h2{
    font-size:42px;
  }

  form{
    padding:24px;
  }

}

@media(max-width:480px){

  .container{
    padding:0 16px;
  }

  .hero{
    padding:40px 0 70px;
  }

  .hero-black{
    font-size:70px;
  }

  .hero-middle span,
  .hero-bottom{
    font-size:70px;
  }
.phone-btn svg {
	width: 30px;
	height: 30px;
}
.phone-btn {
	font-size: 30px;
}
.main-btn {
	padding: 20px 30px;
}
.offer-card h3 {
	font-size: 24px;
}
.savings {
	padding: 50px 0;
}
  .checkbox-item{
    padding:18px;
  }

  .checkbox-item span{
    font-size:15px;
  }

  .form-header{
    padding:35px 20px;
  }

  .form-header h2{
    font-size:34px;
  }
  .footer {
	padding: 50px 0;
}
.footer-logo {
	width: 120px;
}
}