/* ==========================================
   360 PAGE
========================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: "Gilroy", sans-serif;

  color: #111111;

  background: #ffffff;
}


/* ==========================================
   DESIGN SYSTEM
========================================== */

:root {
  --wd-dark-blue: #063767;
  --wd-blue: #0096D5;

  --wd-text: #111111;
  --wd-body: #454545;

  --wd-light-bg: #F7F9FB;
  --wd-card-bg: #FFFFFF;

  --wd-border: #E1E7EC;

  --wd-hero-size: 52px;
  --wd-section-size: 40px;

  --wd-card-title-size: 16px;
  --wd-body-size: 16px;
  --wd-small-size: 13px;
}


/* ==========================================
   COMMON CONTAINER
========================================== */

.page-container {
  width: calc(100% - 96px);

  max-width: 1200px;

  margin: 0 auto;
}


/* ==========================================
   COMMON TYPOGRAPHY
========================================== */

.page-eyebrow {
  margin: 0 0 24px;

  color: var(--wd-blue);

  font-size: 12px;
  font-weight: 600;
  line-height: 16px;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.section-title {
  margin: 0;

  color: var(--wd-dark-blue);

  font-size: var(--wd-section-size);
  font-weight: 700;
  line-height: 1.18;

  letter-spacing: -0.4px;
}


.section-title--center {
  text-align: center;
}


.section-body {
  color: var(--wd-body);

  font-size: var(--wd-body-size);
  font-weight: 400;
  line-height: 1.55;
}


/* ==========================================
   HERO
========================================== */

.ownership-hero {
  position: relative;

  width: 100%;
  height: 720px;

  overflow: hidden;

  background: #ffffff;
}


/* ==========================================
   CONTENT FRAME
========================================== */

.ownership-hero__inner {
  position: relative;
  z-index: 3;

  width: calc(100% - 96px);
  max-width: 1440px;
  height: 100%;

  margin: 0 auto;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.ownership-hero__content {
  position: absolute;
  z-index: 4;

  top: 145px;
  left: 72px;

  width: 520px;
  max-width: 520px;
}


.ownership-hero .page-eyebrow {
  margin: 0 0 24px;

  color: #0096d5;

  font-size: 12px;
  font-weight: 600;
  line-height: 16px;

  letter-spacing: 1.4px;
  text-transform: uppercase;
}


.ownership-hero__title {
  margin: 0;

  color: #063767;

  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: -0.8px;
}


.ownership-hero__description {
  width: 100%;
  max-width: 520px;

  margin: 30px 0 0;

  color: #111111;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* ==========================================
   RIGHT IMAGE
========================================== */

.ownership-hero__image {
  position: absolute;
  z-index: 1;

  top: 0;
  right: 0;

  width: 68%;
  height: 100%;
}


.ownership-hero__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: right center;
}


/* ==========================================
   WHITE FADE
========================================== */

.ownership-hero__image::before {
  content: "";

  position: absolute;
  z-index: 2;

  top: 0;
  bottom: 0;
  left: 0;

  width: 34%;

  pointer-events: none;

  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 1) 12%,
    rgba(255, 255, 255, 0.92) 30%,
    rgba(255, 255, 255, 0.65) 52%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ==========================================
   ONE PLATFORM
========================================== */

.platform {
  width: 100%;

  padding: 120px 0;

  background: #ffffff;
}


.platform__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 100px;
}


.platform__content {
  width: 42%;
}


.platform__content .section-body {
  max-width: 340px;

  margin: 30px 0 0;
}


.platform__steps {
  width: 52%;

  display: flex;
  flex-direction: column;

  gap: 14px;
}


.platform-step {
  width: 100%;

  min-height: 92px;

  padding: 20px;

  display: flex;

  align-items: flex-start;

  gap: 18px;

  background: #F8FAFC;

  border: 1px solid var(--wd-border);

  border-radius: 12px;
}


.platform-step__number {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--wd-dark-blue);

  color: #ffffff;

  border-radius: 7px;

  font-size: 16px;
  font-weight: 600;
}


.platform-step h3 {
  margin: 1px 0 0;

  color: var(--wd-dark-blue);

  font-size: var(--wd-card-title-size);
  font-weight: 600;
  line-height: 21px;
}


.platform-step p {
  margin: 8px 0 0;

  color: var(--wd-body);

  font-size: var(--wd-small-size);
  font-weight: 400;
  line-height: 19px;
}


/* ==========================================
   WHY WHISTLE 360
========================================== */

.why-360 {
  width: 100%;

  padding: 110px 0;

  background:
    linear-gradient(
      110deg,
      #063767 0%,
      #07528F 100%
    );
}


.why-360__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 85px;
}


.why-360__content {
  width: 34%;
}


.why-360__title {
  margin: 0;

  color: #ffffff;

  font-size: var(--wd-section-size);
  font-weight: 700;
  line-height: 1.18;
}


.why-360__content p {
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: var(--wd-body-size);
  font-weight: 400;
  line-height: 1.5;
}


/* ==========================================
   WHY 360 CARDS
========================================== */

.why-360__grid {
  width: 61%;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}


.why-card {
  min-height: 185px;

  padding: 24px;

  background: rgba(255, 255, 255, 0.05);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;
}


.why-card__icon {
  width: 40px;
  height: 40px;

  padding: 10px;

  display: block;

  object-fit: contain;

  background:
    rgba(0, 150, 213, 0.13);

  border-radius: 8px;
}


.why-card h3 {
  margin: 18px 0 0;

  color: #ffffff;

  font-size: var(--wd-card-title-size);
  font-weight: 600;
  line-height: 22px;
}


.why-card p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: var(--wd-small-size);
  font-weight: 400;
  line-height: 19px;
}


/* ==========================================
   WHAT POWERS 360
========================================== */

.powers {
  width: 100%;

  padding: 110px 0 125px;

  background: var(--wd-light-bg);
}


.powers__inner {
  max-width: 1120px;
}


.powers .section-title {
  margin-bottom: 64px;
}


.powers__grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}


.power-card {
  min-height: 220px;

  padding: 30px;

  background: #ffffff;

  border: 1px solid var(--wd-border);

  border-radius: 12px;

  box-shadow:
    0 5px 18px rgba(6, 55, 103, 0.06);
}


.power-card__icon {
  width: 42px;
  height: 42px;

  padding: 10px;

  display: block;

  object-fit: contain;

  background: #EAF7FD;

  border-radius: 8px;
}


.power-card h3 {
  margin: 22px 0 0;

  color: var(--wd-dark-blue);

  font-size: var(--wd-card-title-size);
  font-weight: 600;
  line-height: 22px;
}


.power-card p {
  margin: 11px 0 0;

  color: var(--wd-body);

  font-size: var(--wd-body-size);
  font-weight: 400;
  line-height: 1.45;
}


/* ==========================================
   CTA
========================================== */

.ownership-cta {
  width: 100%;

  padding: 130px 0 145px;

  background: var(--wd-light-bg);
}


.ownership-cta__inner {
  max-width: 920px;

  text-align: center;
}


.ownership-cta h2 {
  margin: 0;

  color: var(--wd-dark-blue);

  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;

  letter-spacing: -0.6px;
}


.ownership-cta p {
  max-width: 720px;

  margin: 34px auto 0;

  color: var(--wd-body);

  font-size: var(--wd-body-size);
  font-weight: 400;
  line-height: 1.55;
}


/* ==========================================
   CTA BUTTONS
========================================== */

.ownership-cta__buttons {
  margin-top: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 16px;
}


.cta-button {
  min-width: 180px;
  height: 56px;

  padding: 0 28px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;
  line-height: 24px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.cta-button:hover {
  transform: translateY(-2px);
}


.cta-button--primary {
  background: var(--wd-blue);

  color: #ffffff;
}


.cta-button--primary img {
  width: 20px;
  height: 20px;

  object-fit: contain;
}


.cta-button--outline {
  background: transparent;

  color: var(--wd-blue);

  border: 1px solid var(--wd-blue);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .ownership-hero {
    min-height: auto;

    padding: 80px 0;
  }


  .ownership-hero__inner {
    width: calc(100% - 64px);
  }


  .ownership-hero__content {
    width: 55%;
    max-width: 520px;
  }


  .ownership-hero__image {
    width: 55%;
    max-width: none;
  }


  .platform__inner,
  .why-360__inner {
    flex-direction: column;

    align-items: stretch;
  }


  .platform__content,
  .platform__steps,
  .why-360__content,
  .why-360__grid {
    width: 100%;
  }


  .powers__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

  :root {
    --wd-hero-size: 38px;
    --wd-section-size: 30px;
  }


  .page-container {
    width: calc(100% - 48px);
  }


  /* ==========================================
     HERO
  ========================================== */

  .ownership-hero {
    width: 100%;
    height: auto;
    min-height: auto;

    padding: 65px 0 0;

    display: block;

    overflow: hidden;

    background: #ffffff;
  }


  .ownership-hero__inner {
    width: 100%;
    max-width: none;
    height: auto;

    margin: 0;

    display: block;
  }


  .ownership-hero__content {
    width: calc(100% - 48px);
    max-width: none;

    margin: 0 auto;
  }


  .ownership-hero .page-eyebrow {
    margin: 0 0 18px;

    font-size: 12px;
    line-height: 16px;
  }


  .ownership-hero__title {
    margin: 0;

    font-size: 38px;
    line-height: 44px;

    letter-spacing: -0.5px;
  }


  .ownership-hero__description {
    width: 100%;
    max-width: none;

    margin: 24px 0 0;

    font-size: 15px;
    line-height: 23px;
  }


  .ownership-hero__image {
    position: relative;

    top: auto;
    right: auto;

    width: 100%;
    height: 320px;

    margin-top: 45px;
  }


  .ownership-hero__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
  }


  .ownership-hero__image::before {
    display: none;
  }


  /* ==========================================
     PLATFORM
  ========================================== */

  .platform {
    padding: 75px 0;
  }


  .platform__inner {
    gap: 50px;
  }


  /* ==========================================
     WHY 360
  ========================================== */

  .why-360 {
    padding: 75px 0;
  }


  .why-360__grid {
    grid-template-columns: 1fr;
  }


  /* ==========================================
     POWERS
  ========================================== */

  .powers {
    padding: 75px 0;
  }


  .powers .section-title {
    margin-bottom: 45px;
  }


  .powers__grid {
    grid-template-columns: 1fr;
  }


  .power-card {
    min-height: auto;
  }


  /* ==========================================
     CTA
  ========================================== */

  .ownership-cta {
    padding: 80px 0;
  }


  .ownership-cta h2 {
    font-size: 32px;
    line-height: 39px;
  }


  .ownership-cta p {
    font-size: 15px;
    line-height: 23px;
  }


  .ownership-cta__buttons {
    flex-direction: column;
  }


  .cta-button {
    width: 100%;
    max-width: 280px;
  }

}