/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =========================================
   GLOBAL COLOR VARIABLES (FROM YOUR DESIGN)
   ========================================= */
:root {
  --OWNit-header-left: #079396;
  --OWNit-header-right: #009B9E;

  --OWNit-own-bg: #00A2A5;
  --OWNit-teal: #32AEAB;

  --OWNit-steps-top: #54B4BD;
  --OWNit-steps-bottom: #929CC6;

  --OWNit-help: #0FB6A7;

  --OWNit-text: #23303D;
  --OWNit-teal-text: #008083;
  --OWNit-white: #FFFFFF;
  --OWNit-shadow: rgba(0, 0, 0, .08);
}

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

/* BASE */
.OWNit-body {
  font-family: 'Poppins', sans-serif;
  color: var(--OWNit-text);
  background: #ffffff;
}

/* LAYOUT WRAPPER */
.OWNit-container {
  max-width: 1300px;
  margin: auto;
  padding: 56px 28px;
}


/* =======================================================
   HEADER
   ======================================================= */

.OWNit-hero {
  background: linear-gradient(to right, #008083, #00a2a5);
  padding: 0px;
  text-align: center;
}

.OWNit-logo {
  height: 54px;
}



/* =======================================================
   TYPOGRAPHY
   ======================================================= */

.OWNit-h2 {
  font-size: 28px;
  color: #008083;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
}

.OWNit-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.OWNit-center {
  text-align: center;
}



/* =======================================================
   TWO COLUMN (HOW + OWNIT)
   ======================================================= */

.OWNit-two-col {
  display: grid;
  gap: 38px;
}

.OWNit-img-wrap {
  text-align: center;
}

.OWNit-img-wrap img {
  width: 290px;
  max-width: 100%;
}

.OWNit-text-white {
  color: #ffffff;
}

.OWNit-btn img {
  max-width: 33px;
  vertical-align: middle;
}

.OWNit-info {
  background: var(--OWNit-own-bg);
}


/* =======================================================
   BADGE
   ======================================================= */

.OWNit-badge img {
  width: 294px;
  margin-top: 32px;
}

.OWNit-card .OWNit-icon img {
  max-height: 70px;
}



/* =======================================================
   OWNIT SECTION
   ======================================================= */

.OWNit-own {
  background: var(--OWNit-own-bg);
}

.OWNit-own-title {
  font-size: 80px;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 700;
  line-height: 1;
}

.OWNit-own-title span {
  color: #000;
}

.OWNit-own-sub {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #fff;
}

.OWNit-own-sub span {
  color: #000;
}

.OWNit-btn {
  display: inline-block;
  border: none;
  padding: 20px 31px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  background: #CEE84D;
  margin-top: 16px;
  cursor: pointer;
}



/* =======================================================
   INFO CARDS
   ======================================================= */

.OWNit-card-grid {
  display: grid;
  gap: 30px;
}

.OWNit-card {
  background: var(--OWNit-white);
  border-radius: 16px;
  padding: 26px 35px 22px;
  box-shadow: 0 18px 28px var(--OWNit-shadow);

}

.OWNit-card-title {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 12px;
  color: #008083;
}

.OWNit-list {
  list-style: disc;
  margin-left: 22px;
}

.OWNit-icon svg {
  color: var(--OWNit-header-right);
  width: 26px;
  height: 26px;
}

.OWNit-card .OWNit-text {
  color: var(--OWNit-teal-text);
}



/* =======================================================
   STEPS SECTION
   ======================================================= */

.OWNit-steps {
  background: linear-gradient(to bottom, #00a2a5 2.404%, #e508df 99.519%);
  padding-top: 58px;
  padding-bottom: 70px;
}

.OWNit-steps .OWNit-h2 {
  font-size: 28px;
}

.OWNit-h2.OWNit-center {
  margin-bottom: 78px;
  color: #fff;
}

.OWNit-step-grid {
  display: grid;
  gap: 30px;
}

.OWNit-step {
  /* background:#ffffff;
  border-radius:18px;
  padding:24px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 392px;
}

.OWNit-step img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.OWNit-step-num {
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  color: #e508df;
  margin-bottom: 10px;
}

.OWNit-step-head {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #00a2a5;
  margin-bottom: 24px;

}

.OWNit-step-text {
  font-size: 14px;
  text-align: left;
  line-height: 1.7;
  color: var(--OWNit-teal-text);
}

.OWNit-step-image {
  width: 264px;
  height: 428px;
  margin-bottom: -90px;
  position: relative;
}

.OWNit-step-card {
  background: white;
  border-radius: 16px;
  padding: 108px 35px 35px;
  max-width: 392px;
  height: 452px;
}



/* =======================================================
   HELP SECTION
   ======================================================= */

.OWNit-help {
  background: #fff;
  padding: 56px 0;
}

.OWNit-help-text {

  line-height: 1.85;
  text-align: left;
  font-size: 18px;
}



/* =======================================================
   DESKTOP RESPONSIVE
   ======================================================= */

@media(min-width:900px) {

  .OWNit-two-col {
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
  }

  .OWNit-img-wrap {
    text-align: right;
  }

  .OWNit-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .OWNit-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .OWNit-own-title {
    font-size: 108px;

  }

  .OWNit-own-sub {
    font-size: 37px;

  }

  .OWNit-h2 {
    font-size: 37px;

  }

  .OWNit-steps .OWNit-h2 {
    font-size: 47px;
  }

  .OWNit-text {
    font-size: 18px;

  }

  .OWNit-btn {
    display: inline-block;
    border: none;
    padding: 20px 46px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 24px;
    background: #CEE84D;
    margin-top: 16px;
    cursor: pointer;
  }

  .OWNit-btn img {
    max-width: 33px;
    vertical-align: middle;
  }

  .OWNit-card-title {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 22px;
    color: #008083;
  }

  .OWNit-step-image {
    width: 264px;
    height: 428px;
    margin-bottom: -90px;
    position: relative;
  }

  .OWNit-help-text {

    line-height: 1.85;
    text-align: left;
    font-size: 23px;
  }
}