/* base setup + safari safe-area reset */
@import url('global.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* reset + fix safari top margin bug */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font-main);
  color: var(--brand-text-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background: transparent;
}

/* prevent safari toolbar safe-area push */
body {
  padding-top: env(safe-area-inset-top, 0) !important;
  padding-bottom: env(safe-area-inset-bottom, 0) !important;
}

/* main two-column section */
.main-container {
  display: flex;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

/* equal width columns */
.left-column,
.right-column {
  flex: 1 1 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* left column (NoOvercharge blue) */
.left-column {
  color: var(--brand-text-light);
  background: var(--brand-blue);
  text-align: left;
  padding-left: 10%;
  justify-content: center;
}

/* hero headline */
.hero-headlines h1 {
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-green);
}

/* commission tagline */
.commission {
  margin: 0;
  font-size: 1.25rem;
  text-align: left;
  color: var(--brand-text-light);
}

.commission strong {
  font-weight: 600;
}

/* content spacing */
.sections {
  margin-top: 2em;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
}

p {
  text-align: left;
  font-weight: 300;
}

/* right column (white form area) */
.right-column {
  background: var(--brand-bg-light);
  color: var(--brand-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding-top: 40px;
}

.right-column form {
  width: 100%;
  max-width: 500px;
}

/* buttons */
.btn {
  background: var(--brand-green);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 900;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  margin-top: 24px;
}

.btn:hover {
  background: var(--brand-green-dark);
  transform: scale(1.02);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* three-step section */
.steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin-top: 0.5rem;
}

.steps div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease-in-out;
}

.steps img {
  height: 30px;
  width: 30px;
  flex-shrink: 0;
}

.steps p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-text-light);
  margin: 0;
  line-height: 1.4;
}

/* footer */
footer {
  background: var(--brand-bg-gray);
  color: var(--brand-blue);
  width: 100%;
  flex-shrink: 0;
  padding: 1rem;
  text-align: justify;
}

footer a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

/* footer legal */
.legal {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--brand-gray);
  line-height: 1.3;
  text-align: left;
  padding: 0 5vw;
  width: 100%;
  box-sizing: border-box;
}

.copyright {
  text-align: center;
  font-weight: 400;
  font-size: 0.7rem;
}