:root {
  --deep-blue: #1b2a41;
  --coral-red: #ff6b6b;
  --light-bg: #f7f7f7;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light-bg);
  color: var(--deep-blue);
  overflow-x: hidden;
}

/* Fix header container class conflict */
.header-content.container {
  display: flex !important;
  grid-template-columns: none !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  gap: 0 !important;
}

/* Main layout */
main.container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 0 20px;
}

/* Content */
.brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
}

.brand-logo {
  height: 85px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.08));
}

h1 {
  margin: 0 0 14px 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.highlight {
  color: var(--coral-red);
}

.subtitle {
  color: #475569;
  margin-bottom: 35px;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--coral-red);
}

/* Form */
.form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

form label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: var(--coral-red);
}

.error-text {
  font-size: 12px;
  color: var(--coral-red);
  margin-top: 6px;
}

/* CTA Button */
.cta-btn {
  margin-top: 10px;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--deep-blue), var(--coral-red));
  transition: transform 0.2s ease;
}

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

/* Footer */
/* Footer */
.footer {
  background: var(--deep-blue);
  color: #cbd5e1;
  padding: 20px 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.footer a:hover {
  color: var(--coral-red);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 13px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  color: var(--coral-red);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 16px;
    gap: 12px;
  }

  .footer-inner > div {
    white-space: nowrap;
    font-size: 12px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    font-size: 15px;
  }

  .footer a {
    font-size: 12px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .header-content.container {
    padding: 0 16px !important;
    height: 56px !important;
  }

  main.container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 16px auto;
    padding: 0 16px;
    width: 100%;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-logo {
    height: 70px;
  }

  h1 {
    font-size: 28px;
    text-align: left;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 14px;
  }

  .features li {
    font-size: 14px;
    padding-left: 24px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .form-card {
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-inner {
    font-size: 12px;
  }

}