@charset "UTF-8";

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

:root {
  --navy:  #011A3C;
  --gold:  #FDC803;
  --grey:  #E0E0E0;	
  --grey-med: #444;	
  --white: #ffffff;
  --site-width: 1400px;
  --site-border-radius: 5px;
  --blue-light: #f2f5f9;	
  --text: var(--grey-med);
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 14px;		
}
img, video {
  max-width: 100%;
  height: auto;
}
.site-container {
  margin-inline: auto;
  max-width: var(--site-width); 
}
/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  gap: 10px;		
  justify-content: space-between;
  padding-block: 9px;
}
.nav-page {
	border-bottom: 2px solid var(--grey);
	margin-bottom: 30px;
}
.page-content {
	border-bottom: 2px solid var(--grey);
	margin-bottom: 20px;
	padding-bottom: 40px;
}
nav,
footer,  
.stats-wrap,
.brands-wrap,
.page-content {
  padding-inline: 10px;	
}
.logo-wrap {
  display: flex;
  align-items: center;
}
.nav-right {
  border-right: 4px solid var(--gold);	
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  padding: 5px 15px 5px 0;	
}
/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr; 
  min-height: 380px;
}
.hero-left {
  background: var(--navy);
  overflow: hidden;
}
.hero-left, 
.form-container {
	padding: 15px;
}
.hero-bullets {
  background: var(--navy); 
  font-size: 14px;		
  padding: 15px 10px;
}  
.coming-soon {
  display: block;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-h1 {
  font-size: clamp(1.3rem, 2.571vw, 36px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 2px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-desc {
  line-height: 1.3;
  color: rgba(255,255,255,0.7);
}
.bullets {	
  display: flex;
  justify-content: space-between;		
  gap: 8px;
  max-width: 520px;		
}
.bullet {
  display: flex;
  gap: 5px;
  color: rgba(255,255,255,0.9);
  text-wrap: balance;
}
.bullet .chk { color: var(--gold); }
.block {
    display: block;
}
/* hero right */
.hero-right {
  background: linear-gradient(160deg, #c5d5e2 0%, #8fafc7 50%, #9fb8cc 100%);	  
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px;		
}
.cta-card {
  background: rgba(1, 26, 60, .9);
  border-radius: calc(var(--site-border-radius)*1.2);	
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.cta-text {
  flex-grow: 1;
}
.cta-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height:  1;		
  margin-bottom: 4px;				
}
.cta-sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 10px;
  border-radius: var(--site-border-radius);
  border: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;		
  text-transform: uppercase;
  cursor: pointer; 
  transition: filter 0.15s;
}
.btn:hover { filter: brightness(0.9); }
.btn.gold  { 
  background: var(--gold); 
  color: var(--navy); 
}
.btn.white {
  background: var(--white);
  color: var(--navy); 
}
.btn .arr {
  background: url("images/arrow-down.svg") no-repeat;	
  background-size: contain;
  width: 16px; 
  height: 16px;
}

/* ── STATS ── */
.stats-wrap,
.brands-wrap {
  padding-block: 30px;
}
.section-h {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1;
}
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-oval {
  background: var(--blue-light);
  border-radius: 120px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 20%;		
}
.stat-num,
.stat-lbl {
  font-family: "Roboto Condensed", sans-serif;	
  color: var(--navy);
  line-height: 1;
}
.stat-num {
  font-size: clamp(2rem, 4.643vw, 65px);
  font-weight: 700;
}
/* ── AAA Form Tabs ── */  
.bg-dark {
  background-color: var(--navy);
  color: var(--white);	
}
.form-tabs {
  margin-bottom: 10px;
}
.form-tab {
  display: inline-block;
  font-size: 18px;		
  font-weight: 700;
  text-transform: uppercase;		
  cursor: pointer;
  color: rgba(255, 255, 255, .7); 
  margin-bottom: 6px;		
  padding-bottom: 1px;
  border-bottom: 1px dashed rgba(255, 255, 255, .4); 
  transition: color 0.15s, border-color 0.15s;
}
.form-tab:hover { color: var(--gold); }
.form-tab.active {
  color: var(--gold);	
  border: none;
  cursor: default;
}
.form-panel { display: none; }
.form-panel.active { display: block; }  

/* ── BRANDS ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin: 0 auto 8px;
}
.brand-cell {
  border: 2px solid var(--grey);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  cursor: pointer;
}
/* ── FOOTER ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text);
}
footer a {
    color: var(--text);
    text-decoration: underline;
}
.page-content h2,
.page-content h3, 
.page-content h4,
.page-content h5, 
.page-content h6 {
  color: var(--navy);
  margin-bottom: 10px;	
}
.page-content strong {
	color: #222;
}
.page-content p,
.page-content li  {
	line-height: 1.4;
	margin-bottom: 12px;
}
.page-content ul {
	margin-left: 30px;
}
.page-content h2 {
	margin-top: 30px;	
}
.page-content table {
	background: var(--grey);
	margin-bottom: 20px;
}
.page-content td {
	background: var(--white);
}
.page-content th,
.page-content td {
	padding: 8px;
}
/* ── RESPONSIVE ── */
@media screen and (max-width: 768px) {
  .hero-logo {
	max-width: 280px;  
	width: 75%;
  }	
  .brands-grid { grid-template-columns: repeat(4, 1fr); }

  .nav-right {
	font-size: 16px;
  }
  .logo-wrap img {
	max-width: 120px;
  }
}
@media screen and (min-width: 768px) {
  body {
	font-size: 16px;		
  }
  .hero {
	grid-template-columns: 40% 60%;
  }
  .hero-right {
	background:url("images/hero-image.png") no-repeat 50%;
	background-size: cover;		  
  }
  .bullets {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--site-border-radius);			
	padding: 6px;
	max-width: 510px;		
  }
  .section-h {
	font-size: 40px;
  }
  .btn {
	font-size: 16px;
	padding: 10px 4.4vw;
  }	
  .cta-row {
	margin: 10px;		
  }	
  .form-tabs {
	display: flex;
  }
  .form-tab {
	font-size: 24px;
	margin-right: 20px;
  }	
  .form-tab +  .form-tab {
	  margin-right: 0;
	  margin-left: 20px;
	  position: relative;
  }	
  .form-tab +  .form-tab:before {
	  content: "|";
	  font-weight: normal;
	  opacity: .5;
	  position: absolute;
	  left: -22px;
  }
}
@media screen and (max-width: 540px) {
  .cta-row { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-oval { width: 50%; padding: 12px; }
  .nav-right { display: none; }
}
@media screen and (max-width: 1023px) {
	.hero-left .bullets {
		display: none;
	}
	.hero-logo {
		width: 90%;
	}
}
@media screen and (min-width: 1024px) {
	nav,
	footer,
	.stats-wrap,
	.brands-wrap,
	.page-content {
	  padding-inline: 20px;	
	}
	.hero {
	  grid-template-columns: 45% 55%;
	}
	.hero-left, 
	.form-container {
		padding: 40px;
	}
	.coming-soon {
		font-size: 26px;
	}
	.cta-row {
	  margin: 30px;		
	}
	.btn {
	  padding: 18px 8px;
	}
	.hero-h1 {
	  margin-bottom: 20px;
	  margin-top: 12px;
	}
	.hero-desc {
		margin-bottom: 20px;
		max-width: 490px;
	}
	.bullets {		
		padding: 10px;
	}
	.cta-card {
	  padding: 18px;
	}
	.cta-label {
	  font-size: 22px;			
	}
	.form-tab {
		font-size: 30px;
	}	
	.brand-cell {
	  height: 74px;
	}
}
@media screen and (min-width: 1200px) {
	.hero {
	  grid-template-columns: 50% 50%;
	}
	.btn {
	  padding: 18px;
	}
	.brand-cell {
	  height: 110px;
	}
}
@media screen and (min-width: 1400px) {	  
	nav,
	footer,  
	.stats-wrap,
	.brands-wrap,
	.page-content {
	  padding-inline: 0;	
	}	  
}