/* ------------------------------------
 Base Reset
------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: url("../images/bg-img.png") no-repeat center top;
  background-size: auto;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #1e242b;
  position: relative;
  line-height: 1.5;
}

.color-pink {
  color: #f8485e;
}

.white-bg {
  background-color: #ffffff;
}

.dark-gray-bg {
  background-color: #3b3b39;
}

.light-gray-bg {
  background-color: #f4f4f4;
}
.res-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------
   Layout Container (max width 1920px)
------------------------------------ */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container2 {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 20px;
}

.common-row {
  position: relative;
  display: flex;
}

.left-img-section {
  position: absolute;
  left: 0;
  top: -80px;
  flex: 0 0 894px;
}

.right-content-section {
  flex: 1;
}
.red-line {
  height: 60px;
  background-color: #f8485e;
  width: 30%;
}

/* ------------------------------------
   Typography
------------------------------------ */

h1 {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 700;
} /* 50 / 60 */
h2 {
  font-size: 3.5rem;
  line-height: 4.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
} /* 35 / 44 */
h3 {
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
} /* 30 / 38 */

p {
  font-size: 3rem;
  line-height: 3.8rem;
  margin-bottom: 3.6rem;
} /* 30px from design */

h1 {
  font-size: clamp(3.2rem, 3.6vw, 5rem);
  line-height: clamp(4rem, 4.8vw, 6rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ------------------------------------
 Header
------------------------------------ */
.site-header {
  width: 100%;
  padding: 40px 0 30px 0;
  text-align: center;
  background-color: #f4f4f4;
}

.logo img {
  max-width: 488px;
  height: auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------
   Hero Section (Two Column Layout)
------------------------------------ */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 48%;
  min-width: 280px;
  max-width: 734px;
}

.hero-left h2 {
  margin-bottom: 3rem;
}
.img-spacer {
  margin: 2rem 3rem;
}

.hero-right {
  flex: 0 1 52%;
  min-width: 300px;
  max-width: 767px;
  width: 100%;
  box-sizing: border-box;
}

/* ------------------------------------
    Form Styling
------------------------------------ */
.lead-form {
  background: #dbebe6;
  padding: clamp(18px, 4vw, 60px);
  border-radius: 52px;
  box-sizing: border-box;
}

.form-main-title {
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #707070;
  padding: 0 16px;
  font-size: 2.4rem;
  font-family: inherit;
  outline: none;
  background-color: #ffffff;
}

.form-group input::placeholder {
  color: #868686;
}

.form-group input:focus {
  border-color: #5f5d5d;
}

.option-block {
  margin-top: 45px;
  margin-bottom: 10px;
}

.option-question {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #3b3b39;
  margin-bottom: 15px;
}

.option-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2.2rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  color: #3b3b39;
}

.radio-label input[type="radio"] {
  width: 32px;
  height: 32px;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  background-color: #fff;
}

.radio-label input[type="radio"]:checked {
  border-color: #707070;
}

.radio-label input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 4px; /* controls dot thickness */
  background-color: #1e242b;
  border-radius: 50%;
}

.divider {
  border: none;
  border-top: 1px solid #707070;
  margin: 40px 0;
}

.privacy-block {
  margin-bottom: 22px;
}

.privacy-title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 8px;
  color: #333333;
}

.privacy-text {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 0;
}

.privacy-text a {
  color: #333333;
  text-decoration: underline;
}

.btn-download {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  background-color: #f8485e;
  color: #ffffff;
  text-align: center;
}

.btn-download:hover {
  background-color: #e6435e;
  transform: translateY(-1px);
}

/* ------- Discover Section ------- */

.discover-section {
  padding: 60px 0;
}

.discover-title {
  font-weight: 700;
  text-align: center;
  color: #393938;
  margin-bottom: 60px;
}

.discover-list {
  max-width: 1328px;
  margin: 0 auto;
}

.discover-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 32px 0;
  border-top: 1px solid #818181;
}

.discover-item:first-child {
  border-top: none;
}

.first-para-spacer {
  padding-top: 1.5rem;
}

.discover-icon {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

.discover-icon img {
  max-width: 120px;
  height: auto;
}

.discover-text {
  flex: 1;
}

.discover-text p {
  color: #3b3b39;
  margin: 0;
  width: 90%;
}

.playbook-cta {
  background-color: #3b3b39;
  color: #ffffff;
  margin-top: 3rem;
}

.playbook-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.playbook-cta-image {
  flex: 0 0 50%;
}

.bottom-img {
  position: relative;
  transform: translateY(-60px);
}

.playbook-cta-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.playbook-cta-content {
  flex: 0 0 45%;
  text-align: left;
}

.playbook-cta-content h2 {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.playbook-cta-underline {
  display: inline-block;
  width: 150px;
  height: 14px;
  background-color: #ff4e6a;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 4.4rem;
    line-height: 5.4rem;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  h3 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
  p {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .form-group input {
    font-size: 1.8rem;
    height: 44px;
  }

  .option-question,
  .radio-label,
  .privacy-title,
  .privacy-text,
  .btn-download {
    font-size: 1.8rem;
    line-height: 2.8rem;
    text-align: left;
  }

  .radio-label input[type="radio"] {
    width: 24px;
    height: 24px;
  }

  .option-block {
    margin-top: 28px;
  }

  .discover-title {
    margin-bottom: 40px;
  }

  .playbook-cta-content h2 {
    font-size: 4rem;
    line-height: 5rem;
  }

  .hero {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .container {
    width: calc(100% - 80px);
    padding: 0px 40px;
  }
  .container2 {
    width: calc(100% - 80px);
    padding: 0px 40px;
  }

  .left-img-section {
    position: relative;
    top: -40px;
    left: 0;
    flex: 0 0 auto;
    max-width: 100%;
  }

  .hero-left {
    flex: 1 1 42%;
  }

  .hero-right {
    flex: 0 1 46%;
  }
}

@media (max-width: 1366px) {
  h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
  h2 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  p {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .container {
    padding: 0px 30px;
  }
  .container2 {
    padding: 0px 30px;
  }
}

/* Tablet and down */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
  h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
  h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
  }

  h1 {
    font-size: 4.2rem;
    line-height: 5.2rem;
  }

  .playbook-cta-inner {
    gap: 30px;
  }

  .playbook-cta-content h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 58%;
  }

  .site-header {
    padding: 18px 0;
  }

  .hero {
    padding: 40px 0 60px;
  }

  h1 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .discover-section {
    padding: 40px 0;
  }

  .discover-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .discover-icon {
    margin-bottom: 12px;
  }

  .discover-text {
    width: 100%;
  }

  .playbook-cta {
    padding: 50px 0;
  }

  .playbook-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .playbook-cta-image,
  .playbook-cta-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .playbook-cta-content {
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0px 20px;
  }
  .container2 {
    width: 100%;
    padding: 0px 20px;
  }

  .hero {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  html {
    font-size: 55%;
  }

  .lead-form {
    padding: 24px 18px;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  p {
    margin-bottom: 2.5rem;
  }

  .discover-icon {
    flex: 0 0 auto;
  }

  .discover-title {
    margin-bottom: 12px;
  }

  .discover-item {
    gap: 10px;
  }

  .form-group input {
    font-size: 1.6rem;
  }

  .option-question {
    font-size: 1.6rem;
    text-align: left;
    line-height: 2.6rem;
  }

  .radio-label {
    font-size: 1.6rem;
  }

  .privacy-title {
    font-size: 1.6rem;
  }
  .privacy-text {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }

  .radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
  }

  .discover-text p {
    width: 100%;
  }

  .playbook-cta-image,
  .playbook-cta-content {
    height: 157px;
  }

  .bottom-img {
    transform: translateY(-81px);
  }

  .playbook-cta-underline {
    height: 8px;
  }

  .form-group {
    margin-bottom: 18px;
  }
  .form-group input {
    height: 44px;
  }
  .option-block {
    margin-top: 28px;
    margin-bottom: 8px;
  }

  .playbook-cta-content h2 {
    font-size: 3rem;
  }

  .logo img {
    max-width: 278px;
    margin-top: 12px;
  }

  .discover-icon img {
    width: 80%;
  }
}
